ok, the ASP programmer i work with is developing a site for a client that does some fancy searches and what-have-yous behind a user/pass. The client has cookies and sessions blocked on their browser, so they can't log in or test out their site. Is there way to get around this so they can use their site with their security settings or should we tell them to accept cookies and deal with it?
Failing that, you could always pass the values via hidden form inputs and querystrings. It poses a security risk, but for testing purposes it would work.
Are you using asp or asp.net? Also - how long do you need the session data to last? If you are using .net, you can use viewstate to maintiain state between trips to the server - no need for cookies...