protected void Page_Load(object sender, EventArgs e) { user = (Users)Session["USER"]; lblUserName.Text = user.UserName.ToString().Clean(); lblNameSurname.Text = user.NameSurname.ToString().Clean(); lblNameSurname2.Text = user.NameSurname.ToString().Clean(); lblNameSurname3.Text = user.NameSurname.ToString().Clean(); lblemail.Text = user.Email.ToString().Clean(); ImgContact.ImageUrl = "Content\\img\\ImgContact.jpg"; ImgProfilePhoto1.ImageUrl = user.ProfilePhoto.Clean(); ImgProfilePhoto2.ImageUrl = user.ProfilePhoto.Clean(); ImgProfilePhoto3.ImageUrl = user.ProfilePhoto.Clean(); if (ImgProfilePhoto1.ImageUrl == "") { ImgProfilePhoto1.ImageUrl = "Content\\img\\user2-160x160.jpg"; } if (ImgProfilePhoto2.ImageUrl == "") { ImgProfilePhoto2.ImageUrl = "Content\\img\\user2-160x160.jpg"; } if (ImgProfilePhoto3.ImageUrl == "") { ImgProfilePhoto3.ImageUrl = "Content\\img\\user2-160x160.jpg"; } languagess = jobs.Languages(); contacts = jobs.Contact(); pages = jobs.Pages(); productcategories = jobs.Productcategory(); products = jobs.Products(); notifications = jobs.NotificationTop5(); // Top 5 }
protected void Page_Load(object sender, EventArgs e) { products = jobs.Products(); languagess = jobs.Languages(); BtnAddNew.Text = Resources.Index.AddProduct; }
protected void Page_Load(object sender, EventArgs e) { if (ddlCategory.Items.Count != 0) { productcategories = jobs.Productcategory(); foreach (var item in productcategories) { ddlCategory.Items.Add(item.ProductCategoryNameEN.ToString()); ddlCategory.Items[ddlCategory.Items.Count - 1].Value = item.id.ToString().Clean(); } } 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 == "EditProduct") { Prcs = AddNewProduct.Process.EditProduct; id = Request.QueryString["id"].Clean(); Dictionary <string, string> condition = new Dictionary <string, string>(); condition.Add("id", id); products = jobs.Products(condition); btnUpdate.Value = Resources.Index.Update; if (products.Count > 0) { PageTitle = Resources.Index.EditProduct; { if (!Page.IsPostBack) { string CategoryName = products[0].id.ToString().Clean(); ddlCategory.SelectedValue = CategoryName; lblturkish.Text = Resources.Index.Turkish; lblenglish.Text = Resources.Index.English; txtTurkishTitle.Value = products[0].ProductNameTR.ToString().Clean(); txtEnglishTitle.Value = products[0].ProductNameEN.ToString().Clean(); txtturkish.Value = products[0].ProductDescriptionTR.ToString().Clean(); txtenglish.Value = products[0].ProductDescriptionEN.ToString().Clean(); txtProductCode.Value = products[0].ProductCode.ToString().Clean(); txtProductUrl.Value = products[0].ProductURL.ToString().Clean(); image1.ImageUrl = products[0].ProductPhoto.ToString().Clean(); imageuploading.Visible = false; } } } else { PageTitle = Resources.Index.DataNotFound; Prcs = AddNewProduct.Process.DataNotFound; } } else if (Processs == "DeleteProduct") { PageTitle = Resources.Index.DeleteProduct; Prcs = AddNewProduct.Process.DeleteProduct; id = Request.QueryString["id"].Clean(); int result = jobs.query("Delete products where id='" + id + "'"); if (result > 0) { Response.Redirect("/ProductList.aspx"); } else { Response.Write("Error1"); } } else { Title = Resources.Index.WrongParameter; } } else { btnUpdate.Value = Resources.Index.AddProduct; PageTitle = Resources.Index.AddProduct; Prcs = Process.AddProduct; 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(); } } }