473,748 Members | 10,771 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

cookie location after being set?

I attempted to find the cookie 'Prospect' in my Temp Internet Files in IE6
after I had set it in ASP:

Response.Cookie s("Prospect").E xpires = Date() + 2
Response.Cookie s("Prospect")(" u_id") = u_id
Response.Cookie s("Prospect")(" u_name") = sName
Response.Cookie s("Prospect")(" VisitorIP") = VisitorIP

....However, it does not appear to be there? Am I looking
in the wrong physical location?

Thanks
Jason
Jul 19 '05 #1
5 4012
C:\Documents and Settings\<your user>\Cookies

Curt

<ja***@catamara nco.com> wrote in message
news:un******** ******@TK2MSFTN GP09.phx.gbl...
I attempted to find the cookie 'Prospect' in my Temp Internet Files in IE6
after I had set it in ASP:

Response.Cookie s("Prospect").E xpires = Date() + 2
Response.Cookie s("Prospect")(" u_id") = u_id
Response.Cookie s("Prospect")(" u_name") = sName
Response.Cookie s("Prospect")(" VisitorIP") = VisitorIP

...However, it does not appear to be there? Am I looking
in the wrong physical location?

Thanks
Jason

Jul 19 '05 #2
Thanks...I looked under the three <user> accounts [/cookie/] folders but
still could not find it....

What am I doing wrong here...I am successfully testing for the cookie in asp
but it does not appear to be in any of the cookie folders?

Thanks
Jason
"Curt_C [MVP]" <software_AT_da rkfalz.com> wrote in message
news:O3******** ******@tk2msftn gp13.phx.gbl...
C:\Documents and Settings\<your user>\Cookies

Curt

<ja***@catamara nco.com> wrote in message
news:un******** ******@TK2MSFTN GP09.phx.gbl...
I attempted to find the cookie 'Prospect' in my Temp Internet Files in IE6 after I had set it in ASP:

Response.Cookie s("Prospect").E xpires = Date() + 2
Response.Cookie s("Prospect")(" u_id") = u_id
Response.Cookie s("Prospect")(" u_name") = sName
Response.Cookie s("Prospect")(" VisitorIP") = VisitorIP

...However, it does not appear to be there? Am I looking
in the wrong physical location?

Thanks
Jason


Jul 19 '05 #3
Hmm... should be there. As long as you have the .Expires set it will write
to one of the cookie folders. The name of it might be tricky though. Clear
ALL of your cookies, then write it and see what appears.

Curt

<ja***@catamara nco.com> wrote in message
news:ul******** *****@TK2MSFTNG P09.phx.gbl...
Thanks...I looked under the three <user> accounts [/cookie/] folders but
still could not find it....

What am I doing wrong here...I am successfully testing for the cookie in
asp
but it does not appear to be in any of the cookie folders?

Thanks
Jason
"Curt_C [MVP]" <software_AT_da rkfalz.com> wrote in message
news:O3******** ******@tk2msftn gp13.phx.gbl...
C:\Documents and Settings\<your user>\Cookies

Curt

<ja***@catamara nco.com> wrote in message
news:un******** ******@TK2MSFTN GP09.phx.gbl...
>I attempted to find the cookie 'Prospect' in my Temp Internet Files in IE6 > after I had set it in ASP:
>
> Response.Cookie s("Prospect").E xpires = Date() + 2
> Response.Cookie s("Prospect")(" u_id") = u_id
> Response.Cookie s("Prospect")(" u_name") = sName
> Response.Cookie s("Prospect")(" VisitorIP") = VisitorIP
>
> ...However, it does not appear to be there? Am I looking
> in the wrong physical location?
>
> Thanks
> Jason
>
>



Jul 19 '05 #4
Also remember to close the browser window because the cookie is not
written to the hard drive from Internet Explorer until after IE is closed.

Curt_C [MVP] wrote:
Hmm... should be there. As long as you have the .Expires set it will write
to one of the cookie folders. The name of it might be tricky though. Clear
ALL of your cookies, then write it and see what appears.

Curt

<ja***@catamara nco.com> wrote in message
news:ul******** *****@TK2MSFTNG P09.phx.gbl...
Thanks...I looked under the three <user> accounts [/cookie/] folders but
still could not find it....

What am I doing wrong here...I am successfully testing for the cookie in
asp
but it does not appear to be in any of the cookie folders?

Thanks
Jason
"Curt_C [MVP]" <software_AT_da rkfalz.com> wrote in message
news:O3****** ********@tk2msf tngp13.phx.gbl. ..
C:\Documen ts and Settings\<your user>\Cookies

Curt

<ja***@catam aranco.com> wrote in message
news:un***** *********@TK2MS FTNGP09.phx.gbl ...

I attempted to find the cookie 'Prospect' in my Temp Internet Files in


IE6
after I had set it in ASP:

Response.Co okies("Prospect ").Expires = Date() + 2
Response.Cookie s("Prospect")(" u_id") = u_id
Response.Cookie s("Prospect")(" u_name") = sName
Response.Cookie s("Prospect")(" VisitorIP") = VisitorIP

...Howeve r, it does not appear to be there? Am I looking
in the wrong physical location?

Thanks
Jason



Jul 19 '05 #5
Thanks...I eventually found the damn thing and this is how it reads, I am
using Browser Hawk detection so that explains the first chunk

bhCookiePerm
1
69.2.200.70/
1536
1263251200
29657175
4147321488
29656772
*
Prospect
VisitorIP=&u%5F name=jason%40ca tamarans3%2Ecom &u%5Fid=203
69.2.200.70/
1536
1141950464
29657441
3253640768
29656842
*

For some reason one of my asp pages can no longer read the cookie above...it
is so wierd....the preceeding page confirms I created the cookie and that I
have cookies
enabled...now suddenly my processing page is telling the "Prospect" cookie
above does not exist.....do you have any ideas why this is happening?

Thanks
Jason

"joker" <no*****@netzer o.com> wrote in message
news:uM******** ******@tk2msftn gp13.phx.gbl...
Also remember to close the browser window because the cookie is not
written to the hard drive from Internet Explorer until after IE is closed.

Curt_C [MVP] wrote:
Hmm... should be there. As long as you have the .Expires set it will write to one of the cookie folders. The name of it might be tricky though. Clear ALL of your cookies, then write it and see what appears.

Curt

<ja***@catamara nco.com> wrote in message
news:ul******** *****@TK2MSFTNG P09.phx.gbl...
Thanks...I looked under the three <user> accounts [/cookie/] folders but
still could not find it....

What am I doing wrong here...I am successfully testing for the cookie in
asp
but it does not appear to be in any of the cookie folders?

Thanks
Jason
"Curt_C [MVP]" <software_AT_da rkfalz.com> wrote in message
news:O3****** ********@tk2msf tngp13.phx.gbl. ..

C:\Documen ts and Settings\<your user>\Cookies

Curt

<ja***@catam aranco.com> wrote in message
news:un***** *********@TK2MS FTNGP09.phx.gbl ...

>I attempted to find the cookie 'Prospect' in my Temp Internet Files in

IE6

>after I had set it in ASP:
>
>Response.Co okies("Prospect ").Expires = Date() + 2
> Response.Cookie s("Prospect")(" u_id") = u_id
> Response.Cookie s("Prospect")(" u_name") = sName
> Response.Cookie s("Prospect")(" VisitorIP") = VisitorIP
>
>...Howeve r, it does not appear to be there? Am I looking
>in the wrong physical location?
>
>Thanks
>Jason
>
>


Jul 19 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
2459
by: Sarah Michael | last post by:
Hi, I am running the following code to set a cookie but it is not working, please help me sorting out the problem. The code is from an online article http://www.devarticles.com/art/1/639 I am using Windows 2000 SP5, PHP 4.2.3, MYSQL 4.0.13-nt, apache 2.0.45
2
9173
by: bagsmode | last post by:
Hi, I'm trying to set a session cookie and then redirect, however I get the error: Status: 302 Moved Location: /index.cgi I thought I recall getting an error like this when I first tried performing a redirect when I had left in print "Content-type:text/html\n\n";
3
4210
by: HorseGeek | last post by:
I can't find a cookie that my code is writing. The behavior of my webpages indicates that the cookie IS being written SOMEPLACE. However, I can't find it. My client does not want the code going into production unless they can actually see where the cookie is being written. They are concerned that the cookie may stay around after they leave the screen and grant authorization to other users to get to web pages that they are now allowed...
2
1166
by: Jose Olivas | last post by:
I need to set a cookie on 5 pages, each being a different "home." Then those pages will go to 10 common pages, but when they leave the common pages to go back home I want them to the original home page they came from. I know that I can do this with check boxes and a refresh. What I want to do is set the cookie on the first page without it being seen, no need to refresh since the other pages will be be reading the value set. Any help...
1
3188
by: Steve Remer | last post by:
My application (relevant code snippets below) originally used Session variables in order to maintain state from page to page. After being unable to solve the mystery of why those variables were intermittently inaccessible, (all Session variables gone, not using InProc Session state mode), I moved to a cookies-based solution. Now I have cookie contents that are intermittently inaccessible. Someone suggested using session variables to...
4
9740
by: Phil Powell | last post by:
I thought this would work but it seems to not work neither in Netscape nor in IE: <script type="text/javascript"> <!-- // OBTAINED FROM http://www.javascripter.net/faq/settinga.htm // NOTE THAT IF YOU SET days TO -1 THE COOKIE WILL BE SET TO YESTERDAY
6
2702
by: kelvlam | last post by:
Hello all, I'm still a bit new with JavaScript, and I hope the guru here can shed some light for me. It's regarding handling cookie and the case-sensitive nature of JavaScript itself. My problem is how do I handle the "path" parameter in cookie. First, the sequence start at http://www.testServer1.com/TestApp/page1.htm, and a cookie is set at
2
2709
by: rn5a | last post by:
A web.config file has the following code: <configuration> <system.web> <authentication mode="Forms"> <forms name="NETConnectCookie" loginUrl="Login.aspx"> <credentials passwordFormat="SHA1"/> </forms> </authentication> </system.web>
1
8959
Markus
by: Markus | last post by:
In the process of making a user registration page, and if a username and or email address is already in use i set a cookie then use header( ... to redirect the user back to the page with the form. On the page with the form, i check to see if there is reason to echo the error (if isset $_GET; .. ) And then echo the cookie out. Hooooowever, it seems the cookie isn't being recognised or i'm just silly silly silly! // setting the cookie...
0
8989
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9537
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9319
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9243
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8241
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
4869
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3309
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2780
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2213
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.