Jump to content

Cookie/Session alternative?

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
4 replies to this topic

#1
brendan

brendan

    Newbie

  • Members
  • PipPip
  • 15 posts
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?

#2
Guest_Jordan_*

Guest_Jordan_*
  • Guests
Code your page to pass the session around to each url. Instead of a cookie containing the data you would have the variables in the URL.

Example: url.asp?sessionid=878239901&etc....

Check here:
http://support.micro...B;EN-US;Q175167

#3
Guest_NeedHelp_*

Guest_NeedHelp_*
  • Guests
Or you could store it in a local cookie file instead of a remote cookie file. but this would be difficult I think.

#4
TcM

TcM

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 11,147 posts
jeah jordan's idea seems cool

#5
Guest_Jordan_*

Guest_Jordan_*
  • Guests
I don't know anything about ASP but it is fairly easy to accomplish with PHP. I assume that ASP would probably be just as easy.