4GuysFromRolla.com : ASP FAQS :
Cookies
Question:
How can I share cookies between my server-side scripts (ASP) and my client-side scripts (e.g., JavaScript in the browswer)? [Print this FAQ ]
Answer:
User ChaCha worked on this for a while and discovered the answer! I simply pass along the information: As a rule it looks like to set global cookies that can be readable by both the client and server do this: Setting on server:
path="/" domain="www.mydomain.com"
Setting on client:
<no path> domain="www.mydomain.com"
See this MSDN entry for more info on setting cookies from ASP code. See this MSDN entry for more on setting cookie values from client-side code. See the irt.org's JavaScript FAQ for various info on client-side cookies.
FAQ posted by Bill Wilkinson at
11/15/2002 8:34:54 PM to the
Cookies category.
This FAQ has been viewed 47,592 times.
Do you have a FAQ you'd like to suggest?
Suggestions? Comments? If so, send it in !
Also, if you'd like to be a FAQ Admin (creating/editing FAQs),
let me know ! If you are looking for other FAQs, be
sure to check out the 4Guys
FAQ and Commonly Asked Messageboard Questions !
Most Viewed FAQs:
1.) How can I format numbers and date/times using ASP.NET? For example, I want to format a number as a currency. (761643 views )
2.) I am using Access and getting a 80004005 error (or a [Microsoft][ODBC Microsoft Access Driver] The Microsoft Jet database engine cannot open the file '(unknown)' error) when trying to open a connection! How can I fix this problem? (207777 views )
3.) How can I convert a Recordset into an array? Also, how can I convert an array into a Recordset? (202549 views )
4.) How can I quickly sort a VBScript array? (196039 views )
5.) How can I find out if a record already exists in a database? If it doesn't, I want to add it. (156019 views )
6.) How do I display data on a web page using arrays instead of Do...While...MoveNext...???... (152331 views )
7.) When I get a list of all files in a directory via the FileSystemObject, they aren't ordered in any reasonable way. How can I sort the files by name? Or by size? Or by date created? Or...
(140381 views )
8.) For session variables to work, must the Web visitor have cookies enabled? (110162 views )
9.) Can I send emails without using CDONTS? (107083 views )
10.) How can I take the result of a SELECT...MULTIPLE or a group of same-named checkboxes and turn it into a query? That is, if the user selects 3 answers, how can I construct a query that looks for all 3? (106308 views )
Last computed at 9/17/2007 3:22:00 AM