Display Image in Image Control

Asp.Net , Image , .Net Jāgadhri, India
  • 10 years ago

    HI, I have an image control to display image but the issue is My image is on different server and my application is on different server. Here is my code to retrieve image in image control.

    string f = context.Request.QueryString["id"]; //Option 1: from server location.
    string ipurl = "\\10.7.10.231"; f = ipurl + @"\Images\" + f + ".jpeg"; System.Drawing.Image image = System.Drawing.Image.FromFile(f); context.Response.Clear(); context.Response.ClearHeaders(); image.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg); context.Response.ContentType = "image/jpeg"; HttpContext.Current.ApplicationInstance.CompleteRequest();

    In aspx source code it is like

    I got an exception that FileISnot Found.

    I appreciate if any one can help me out.

    Thanks.

Post a reply

No one has replied yet! Why not be the first?

Sign in or Join us (it's free).

Contribute

Why not write for us? Or you could submit an event or a user group in your area. Alternatively just tell us what you think!

Our tools

We've got automatic conversion tools to convert C# to VB.NET, VB.NET to C#. Also you can compress javascript and compress css and generate sql connection strings.

“Theory is when you know something, but it doesn't work. Practice is when something works, but you don't know why. Programmers combine theory and practice: Nothing works and they don't know why.”