Re: Cookie setting with IP address, not Domain name
- From: "bruce barker \(sqlwork.com\)" <b_r_u_c_e_removeunderscores@xxxxxxxxxxx>
- Date: Mon, 2 Oct 2006 12:11:52 -0700
the domain you specify for the cookie must belong to request domain. if the
browser is seeing an ipaddress, then you can not specify a domain. the
browser seeing the ipaddress is usualy caused by a redirect, or proxy
infront of the server.
-- bruce (sqlwork.com)
"Todd Brewer" <ToddBrewer@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:467666DC-4CD4-4D5B-AA68-51BA8F979575@xxxxxxxxxxxxxxxx
I have an ASP.NET 2.0 site that stores a cookie on the browser. Instead of
the domain name (www.somename.com) it comes accross as the IP address of
the
server. This works in Firefox, but fails with IE 6 because of security.
I
went through and forced the Domain like this:
this.Response.Cookies["culture"].Value = "en-MX";
this.Response.Cookies["culture"].Expires =
DateTime.Now.AddDays(30);
this.Response.Cookies["culture"].Domain = "somename.com";
This results in Firefox denying the cookie, as well as IE. Why is the
cookie coming across as an IP address? Is there a way around this?
Thanks in advance.
Todd
.
- Prev by Date: Re: ImageButton, Repeater and ItemDataBound
- Next by Date: MS Enterprise Library
- Previous by thread: Gridview PagerStyle problem
- Next by thread: MS Enterprise Library
- Index(es):