step 1: Take a image button and assign ImageUrl is equal to original Image Path Eg :- Image.ImageUrl = "image/originalImage.jpeg" Step 2: Then On pageLoad write the code:- Image.ImageUrl = "view.aspx?imgUrl =" + Image.ImageUrl + "&Width=100&Height=100"; step 3: write the Following Coding on the view.aspx Page:- private void Page_Load(object sender, System.EventArgs e) { string url="../Products/image/imageNot.jpg"; int Weight=60,Height=60; if(Request.QueryString["URL"]!=null) { url = Request.QueryString["URL"].ToString(); Weight = Convert.ToInt32(Request.QueryString["Width"].ToString()); Height = Convert.ToInt32(Request.QueryString["Height"].ToString()); } Resize(url,Weight,Height); } public void Resize(string strPath, int Weight, int Height) { string strFile = strPath.Substring(strPath.LastIndexOf("/")+1); string urlPhysical = HttpContext.Current.Server.MapPath(st...