this is how my code look now:
System.Drawing.Image objImage = System.Drawing.Image.FromFile(Server.MapPath(\"aaa.jpg\")); int height = objImage.Height; int widt
Probably because saveImagePath will be a local path (such as c:\somepath\aaa.jpg) that is not reachable from the browser. You probably want to set the ImageUrl = "ImagesMerge/aaa.jpg" instead.
saveImagePath
c:\somepath\aaa.jpg
ImageUrl = "ImagesMerge/aaa.jpg"