Session variable - no cookies

K

Kumar Reddi

You should use cookieless session... Then you do not have to worry about
user cookie settings.
asp.net needs browser cookie settings to be turned on to store the session
ID, which is the default setting.. But if you go into the web.config and set
cookieless=true, then asp.net will embed the session id in the url and will
make your application independent of browser cookie settings.
 
G

Guest

Hi;

Reading this it looks like you are either always cookieless or always
cookie(?) but can't have it go cookieless only if necessary. I'd rather not
have the cookie always in the url for the occasional paranoid who doesn't
allow session cookies.

So...

Is there a way to determine if cookies are allowed and put up some text in
the web page if they are turned off?

--
thanks - dave
david_at_windward_dot_net
http://www.windwardreports.com

Cubicle Wars - http://www.windwardreports.com/film.htm




Kumar Reddi said:
You should use cookieless session... Then you do not have to worry about
user cookie settings.
asp.net needs browser cookie settings to be turned on to store the session
ID, which is the default setting.. But if you go into the web.config and set
cookieless=true, then asp.net will embed the session id in the url and will
make your application independent of browser cookie settings.

David Thielen said:
Hi;

I need to keep a string in Session["name"] however this does not work if
the
user has cookies turned off. How can I work around this?

--
thanks - dave
david_at_windward_dot_net
http://www.windwardreports.com

Cubicle Wars - http://www.windwardreports.com/film.htm
 
W

Walter Wang [MSFT]

Hi David,

You are right that you will have to be always cookieless or always cookie.
Setting cookieless="AutoDetect" will only use the browser capabilities, if
user disabled cookies, cookies still will be used by not working.

One way to determine whether cookies are accepted is by trying to write a
cookie and then trying to read it back again. If you cannot read the cookie
you wrote, you assume that cookies are turned off in the browser.

For complete code listing, please see following MSDN Library:

#ASP.NET Cookies Overview
http://msdn2.microsoft.com/en-us/library/ms178194.aspx
(Search for section titled "Determining Whether a Browser Accepts Cookies")

Hope this helps. Please feel free to post here if anything is unclear.


Sincerely,
Walter Wang ([email protected], remove 'online.')
Microsoft Online Community Support

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,777
Messages
2,569,604
Members
45,208
Latest member
RandallLay

Latest Threads

Top