コード例 #1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     newss          = jobs.News();
     languagess     = jobs.Languages();
     BtnAddNew.Text = Resources.Index.AddNews;
 }
コード例 #2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            btnUpdate.ServerClick += BtnUpdate_ServerClick;
            btnClear.ServerClick  += BtnClear_ServerClick;
            BtnUpload.Text         = Resources.Index.Upload;
            btnClear.Value         = Resources.Index.Clean;

            if (Request.QueryString["Process"] != null)
            {
                string Processs = Request.QueryString["Process"];

                if (Processs == "EditNews")
                {
                    Prcs = AddNewsPage.Process.EditNews;
                    id   = Request.QueryString["id"].Clean();
                    Dictionary <string, string> condition = new Dictionary <string, string>();
                    condition.Add("id", id);
                    newss           = jobs.News(condition);
                    btnUpdate.Value = Resources.Index.Update;
                    if (newss.Count > 0)
                    {
                        PageTitle = Resources.Index.EditPage;
                        {
                            if (!Page.IsPostBack)
                            {
                                lblturkish.Text        = Resources.Index.Turkish;
                                lblenglish.Text        = Resources.Index.English;
                                txtTurkishTitle.Value  = newss[0].NewsTitleTR.ToString().Clean();
                                txtEnglishTitle.Value  = newss[0].NewsTitleEN.ToString().Clean();
                                txtturkish.Value       = newss[0].NewsContentTR.ToString().Clean();
                                txtenglish.Value       = newss[0].NewsContentEN.ToString().Clean();
                                txtNewsDate.Value      = newss[0].NewsDate.ToString().Clean();
                                image1.ImageUrl        = newss[0].NewsImage.ToString().Clean();
                                imageuploading.Visible = false;
                            }
                        }
                    }
                    else
                    {
                        PageTitle = Resources.Index.DataNotFound;
                        Prcs      = AddNewsPage.Process.DataNotFound;
                    }
                }
                else if (Processs == "DeleteNews")
                {
                    PageTitle = Resources.Index.DeleteNews;
                    Prcs      = AddNewsPage.Process.DeleteNews;
                    id        = Request.QueryString["id"].Clean();
                    int result = jobs.query("Delete news where id='" + id + "'");
                    if (result > 0)
                    {
                        Response.Redirect("/NewsList.aspx");
                    }
                    else
                    {
                        Response.Write("Error1");
                    }
                }
                else
                {
                    Title = Resources.Index.WrongParameter;
                }
            }
            else
            {
                btnUpdate.Value         = Resources.Index.AddNews;
                PageTitle               = Resources.Index.AddNews;
                Prcs                    = Process.AddNews;
                Viewingimages.Visible   = false;
                uploadbuttondiv.Visible = false;
            }
            if (FileUpload1.HasFile)
            {
                if (Path.GetExtension(FileUpload1.PostedFile.FileName) == ".jpg" || Path.GetExtension(FileUpload1.PostedFile.FileName) == ".png")
                {
                    Random rndm            = new Random();
                    string PhotoExtensions = Path.GetExtension(FileUpload1.PostedFile.FileName);
                    string PhotoName       = FileUpload1.PostedFile.FileName /*+ rndm.Next(99999999, 999999999) + PhotoExtensions*/;
                    //Firstly we will save chosen images to \\images\\ folder as temporary
                    FileUpload1.SaveAs(Server.MapPath("~\\Content\\img\\uploads\\temp\\") + PhotoName);
                    //After we are converting as bitmap
                    Bitmap Photo  = new Bitmap(Server.MapPath("~\\Content\\img\\uploads\\temp\\") + PhotoName);
                    int    Width  = 215;
                    int    Height = 215;
                    //Resizing the photo
                    Size Size = new Size(Width, Height);
                    //Resmi boyutlandırıyoruz.
                    Bitmap ResizedPhoto         = new Bitmap(Photo, Size);
                    string Resizedandsavedphoto = "~\\Content\\img\\uploads\\" + PhotoName;
                    //We are saving resized photo to \\images\\userphotos\\ folder
                    ResizedPhoto.Save(Server.MapPath(Resizedandsavedphoto), ImageFormat.Jpeg);
                    Photo.Dispose();
                    ResizedPhoto.Dispose();
                    //we delete the photo we saved as temporary
                    FileInfo Firstuploadedphoto = new FileInfo(Server.MapPath("~\\Content\\img\\uploads\\temp\\") + PhotoName);
                    Firstuploadedphoto.Delete();
                    image1.ImageUrl = Resizedandsavedphoto.Clean();
                }
            }
        }