Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 165801
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T11:59:08+00:00 2026-05-11T11:59:08+00:00

I maintain an application that has a .aspx page that loads on image from

  • 0

I maintain an application that has a .aspx page that loads on image from the database and uses Response.BinaryWrite() to write it back to the client. This worked perfectly not long ago. Two things have changed, we upgraded the application to .NET 3.5 and they upgraded all the computers at work to IE7.

Everything works fine on Firefox, but all I get in IE7 is a red X. So I assume this issue is related to IE7? Is there a security setting somewhere that would stop it from loading images from a .aspx form? It’s already set to display based on the content type and not the extension.

Here is some of the code. Like I said, I just maintain this app and didn’t write it. I know using Session is not a great way of doing it, but it’s what I have and the switch statement is just a ‘wtf?’.

<asp:image id='imgContent' runat='server' Visible='true' ImageUrl='ProductContentFormImage.aspx'></asp:image>      protected void Page_Load(object sender, System.EventArgs e)     {         Hashtable hshContentBinary = (Hashtable)Session['hshContentBinary'];         byte[] content = (byte[]) hshContentBinary['content'];         string extension = (string) hshContentBinary['extension'];           string contentTypePrefix = 'application';         switch(extension.ToLower())         {             case 'gif':             case 'jpg':             case 'bmp':                 contentTypePrefix = 'image';                 break;             case 'tif':                 contentTypePrefix = 'image';                 break;             case 'tiff':                 contentTypePrefix = 'image';                 break;             case 'eps':                 contentTypePrefix = 'image';                 break;             default:                 Response.AppendHeader(                      'Content-disposition',                     'attachment; filename=content.' + extension );                 break;         }         Response.ContentType = contentTypePrefix + '/' + extension;         Response.BinaryWrite(content);     } 

EDIT:

OK, I followed your suggestions and through a little more research I have changed the method to the following, but it still doesn’t work.

protected void Page_Load(object sender, System.EventArgs e) {     Hashtable hshContentBinary = (Hashtable)Session['hshContentBinary'];     byte[] content = (byte[]) hshContentBinary['content'];     string extension = (string) hshContentBinary['extension'];     string contentType;     string contentDisposition = 'inline; filename=content.' + extension;      Response.ClearContent();     Response.ClearHeaders();     Response.Clear();      switch(extension.ToLower())     {         case 'gif':             contentType = 'image/gif';             break;         case 'jpg':         case 'jpe':         case 'jpeg':             contentType = 'image/jpeg';             break;         case 'bmp':             contentType = 'image/bmp';             break;         case 'tif':         case 'tiff':             contentType = 'image/tiff';             break;         case 'eps':             contentType = 'application/postscript';             break;         default:             contentDisposition = 'attachment; filename=content.' + extension;             contentType = 'application/' + extension.ToLower();             break;     }      Response.Buffer = true;     Response.Expires = 0;     Response.ContentType = contentType;     Response.AddHeader('Content-Length', content.Length.ToString());     Response.AddHeader('Content-disposition', contentDisposition);     Response.Cache.SetCacheability(HttpCacheability.NoCache);     Response.BinaryWrite(content);     Response.End(); } 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T11:59:09+00:00Added an answer on May 11, 2026 at 11:59 am

    The image was corrupted in a way that IE7 could not display it, but Firefox could. The image was large it wouldn’t fit on the screen and I didn’t see where it was cut off.

    Thanks for all your suggestions.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 225k
  • Answers 225k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You might want to look at MySql Membership and role… May 13, 2026 at 12:56 am
  • Editorial Team
    Editorial Team added an answer have you looked at lsof May 13, 2026 at 12:56 am
  • Editorial Team
    Editorial Team added an answer There is some good information in this post, so I… May 13, 2026 at 12:56 am

Related Questions

Let me set the stage here. I'm a very junior developer who's recently made
Am working on a business layer for a complex web application and am temporary
I have an ASP.NET WebForms application that has a feature that requires the user
I have to maintain an application that has a lot of columns that are

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.