Yes, it does. Here's what I did:
1. In Visual Studio 2005, choose File | New Web site (C#)
2. In the code behind of Default.aspx, I added :
if(Request.Cookies.Get("LOGINID")!=null)
{
// Not null
}
if (Request.Cookies["LOGINID"] !=null)
{
// Not null
}
3. Set break points in the code
4. Hit F5.
Everything runs fine....
Imar
---------------------------------------
Imar Spaanjaars
http://Imar.Spaanjaars.Com
Everyone is unique, except for me.
Author of
ASP.NET 2.0 Instant Results and
Beginning Dreamweaver MX / MX 2004
Want to be my colleague? Then check out this post.