I have the remote computer, it name is A11 and a image file name is A22
i try my code use aspnet run IE11 , IE11 can show image ,but chrome can't show.
my code is same , as follow
protected void Page_Load(object sender, EventArgs e)
{
Image2.ImageUrl = @"file://A11/A2222.jpg";
Image1.ImageUrl = @"\\A11\\A2222.jpg";
}
i try other method
FileInfo fi = new FileInfo(@"\\A11\\A2222.jpg");
Response.AddHeader("Content-Disposition", "inline;Filename=" + @"\\A11\\A2222.jpg");
Response.AddHeader("Content-Length", fi.ToString());
other method: clear Cache open image display option
but it is not working for chrome, it still no show my image
how can i do ?
ps.
chrome ver.78.0.3904.108