ASP.NET reading cookies

I'm trying to read the cookies using HttpContext.Current.Request.Cookies, but the only cookie that I get is the ASP.NET SessionId cookie. There are many cookies on the machine, why am I only getting the one cookie?

Thanks,

- StewYou can only read cookies created within your domain.Write only Request.Cookies("Name")

Where Name is the cookie variable that save by response.cookies("Name")="Kamal"

Thanks
Kamal
 
Back
Top