Hi,
background: I work on an asp.net web application that is on a company intranet. cookieless="true" is set in the web.config in the sessions configuration. The application is launched off a page and can run in several different modes (a different link for each mode). It is a business requirement that multiple instances of the application can be run at the same time for comparison and so each browser spawn must have a new session...anyway...
Checking the Temporary Internet Files folder on my pc, each image used in the application that is being viewed is downloaded multiple times because the session id is in the url (I assume) and is causing the cached image not to be found. The Internet Address field for the same image is in the form http://mywebserver/mywebapp/(S(......))/images/xxxxxxx.gif
To continue having cookieless sessions, is the best way to move images etc into a directory outside of the web application on the same (or different) server? e.g. http://mywebserver/mywebappresource/images/xxxxxxx.gif
any suggesions most welcome! thanks heaps!