views:

16

answers:

1

I cannot display images in my application when I have the session string in the URL.

This works: http://server/application/image.png

This doesn't: http://server/application/(S(ane2sz55z15ra045gocejcq1))/image.png

It worked fine when it was running in Windows XP, but now I have moved it to Windows Server 2008 instead. The same happens with CSS and JS files.

A: 

Probably because the .PNG extention isn't mapped to ASP.Net, and therefore your webserver will try and serve it as static content, which of course doesn't exist.

Jamie
Is it only Windows Server that doesn't have this mapping as default?How can I set this mapping?
Palpie