Images Not Being Displayed IN ASPX pages With .NET 1.1

G

Guest

I developed a series of ASPX pages using VS 2002 and 1.0 version of the framework. These pages save the sessions state information InProc. I have upgraded to VS 2003 and 1.1 of the framework and have run into the following problem. When I save the session state in proc, the images on my page are not displayed. If turn this off it works. Here is a sample of the IIS log

Seesion State Turned Of
15:19:29 127.0.0.1 DEBUG /Cams/StatReports/CamsBanner.aspx 200
15:19:32 127.0.0.1 GET /Cams/StatReports/CamsBanner.aspx 200
15:19:32 127.0.0.1 GET /Cams/StatReports/images/netbkgnd.gif 200
15:19:32 127.0.0.1 GET /Cams/StatReports/images/STATESEAL.GIF 200
15:19:38 127.0.0.1 GET /projectconsole/main 404
15:19:49 127.0.0.1 DEBUG /Cams/StatReports/CamsBanner.aspx 200
15:19:57 127.0.0.1 DEBUG /Cams/StatReports/CamsBanner.aspx 200

Session State Set To InPro
15:20:00 127.0.0.1 GET /Cams/StatReports/CamsBanner.aspx 500
15:20:05 127.0.0.1 DEBUG /Cams/StatReports/CamsBanner.aspx 200
15:20:14 127.0.0.1 DEBUG /Cams/StatReports/CamsBanner.aspx 200
15:20:17 127.0.0.1 GET /Cams/StatReports/CamsBanner.aspx 302
15:20:17 127.0.0.1 GET /Cams/StatReports/(pu13s145czo3xo452uruc1zk)/CamsBanner.aspx 200
15:20:17 127.0.0.1 GET /Cams/StatReports/(pu13s145czo3xo452uruc1zk)/images/netbkgnd.gif 404
15:20:17 127.0.0.1 GET /Cams/StatReports/(pu13s145czo3xo452uruc1zk)/images/STATESEAL.GIF 40

As you can see IIS could not find the Gif images because the session state information was stored in the URL. When run under .NET framework 1.0 the Gif image URLs were not imbedded in the image URL and everything worked normal

Can anyone explain this or tell me what I am doing wrong

Thanks
Jame
 
G

Guest

I put the site on another machine with .NET Framework 1.1 and everything worked great. So I uninstalled, then reinstalled the framework on my development machine and that seemed to fix the problem

James
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top