I am displaying image from a folder using an asp image control in a timer.The image doest not correctly fit into the screen like it gets vertical and hortizontal scroll bars.
aspx code
code behind
string localstr = Server.MapPath("~//bin//Images//"+ Filename );
Byte[] bytes = File.ReadAllBytes(localstr);
string base64String = Convert.ToBase64String(bytes, 0, bytes.Length);
Image1.ImageUrl = "data:image/" + ext + ";base64," + base64String;
Manav PandyaPosted Jan 18, 2018, 12:56 AM
Kip HackmanPosted Apr 23, 2020, 3:56 PM
SmilePosted Jan 18, 2018, 12:36 AM
Manav PandyaPosted Jan 17, 2018, 7:48 AM