Dose you mean the forms name in authentication section?
I have chane it , but still can't work
<authentication mode="Forms">
<forms name="xxxxxxx" loginUrl="Login.aspx" protection="Validation"
timeout="99999" defaultUrl="Home.aspx">
"ad" <fl****@wfes.tcc.edu.tw> ¼¶¼g©ó¶l¥ó·s»D:%2***************@TK2MSFTNGP15.phx. gbl...
Thanks,
How to change the cookie name in web.config?
"Joey" <jo*********@topscene.com>
???????:11**********************@o13g2000cwo.googl egroups.com...I had a similar problem once. I just changed the cookie name in my
web.config file to avoid any conflicts. That worked.
ad wrote: I use the codes below to clear the cookie["us_id"]:
HttpCookie myCookie = new HttpCookie("us_id");
myCookie.Expires = DateTime.Now.AddDays(-1d);
Response.Cookies.Add(myCookie);
It do well when the cookie is from the web application itself,
But fail to clear when the cookie is form another application, like php.
How can I do?