Ask a Question related to ASP, Design and Development.
-
Glen #1
Response.Cookies(x).Domain ???
Hi,
I am looking for a way to delete (expire) all the cookies that we've
ever written to the user's machine. I have found several scripts,
however I have come across one "gotcha."
The scripts I have found all look something like this:
response.buffer = "true"
dim x
for each x in Request.Cookies
Response.Cookies(x) = "must be something"
Response.Cookies(x).Expires = "January 1, 1999"
next
One cookie gets set like this:
Response.Cookies(x).Domain = ".henryschein.com"
so that we can retrieve it from 'www.henryschein.com' and
'info.henryschein.com'
The problem is that the script above does not delete it.
Anyone have any idea why this is?? Anyone have a script that properly
deletes ALL the cookies that you've ever written to the user's
machine??
Thanks!!
Glen
Glen Guest
-
How to post data to a different domain and recieve a response
Hi, I have a web application running inside an organization and I need to post some data to an asp page sitting outside the organization How do... -
SLOW response from .NET Web Service on Domain Controller
We have several servers with .NET Framework 1.1 istalled. we use the servers to work with .Net Web Services. All servers are working fine except... -
Cookies valid for more than one domain
Hello, Ever tried to set a cookie valid for more than one domain? I read several articles (on PHPBuilder, devshed and so on) with ways I... -
AW7 vs. DirectorMX for psychology experiment using response times AND response answers
Hello, I'm very new to application design, but need to develop a web based application to use at multiple schools as part of an experimental... -
Pasing a reference to my page's Response.Cookies collection
I would like to have my ASPX page call a function intended to make changes the the current Page.Response.Cookies. I had thought that to allow the... -
MSFT #2
RE: Response.Cookies(x).Domain ???
Hi Glen,
If we use:
Response.Cookies(x) = ""
Response.Cookies(x).Expires = "January 1, 1999"
Response.Cookies(x).Domain = ""
Will this help?
Luke
MSFT Guest
-
Glen #3
Re: Response.Cookies(x).Domain ???
Anyone have any thoughts on this??
Thanks!!
Glen
Glen Guest



Reply With Quote

