|
|
 |
RE: FN-FORUM: Querystring
date posted 16th January 2006 17:13
Server side in asp is really easy
See http://www.w3schools.com/asp/asp_cookies.asp
' set a cookie
Response.Cookies("mycookie") = "sam"
' set an expiry if you don't want to loose it between session.
Response.Cookies("mycookie").Expires=#May 10,2002#
' read it back
Response.write(request.Cookies("mycookie"))
Regards
Sam Morgan
WiredEyes / WebClickGo
tel (Uk): +44 (0)20 7100 2178 / tel (Italy): +39 070 766 242
fax (uk): 0871 433 2278 / fax (Italy): 070 330 9939
web : www.wiredeyes.com / www.webclickgo.com
----
umop ap!sdn w,! aw dlaH
> Agreed Sam
>
> It has now been altered, similar to your script there, but slightly
> different.
>
> Now wrestling with cookies never used them before so another
> learning curve.
> I know they are resisted by some browsers but necessary for
> this solution.
> Any tips? :)
>
|
 |
|