473,320 Members | 1,722 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

When are cookies created?

I've setup a method (C#) that I can call, passing it a cookie name,
then a name-value pair. The idea is that as I can't append to a cookie,
I read the cookie value, append by name=pair to the end and write it
back... which works fine for adding a single name-value pair on a page.

The problem is, I want/need to add multiple name-values pairs, the
number of which changing between pages (some might have 3, another 8).
In my test scripts I've found a major problem when trying to add even 2
pairs on a single page.

The problem is this:

- the first time I call my method, it checks the current cookie value,
which is say "loggedin=true"
- it then appendsthe name-value pair passed to the method ("name" and
"kevin") as a new string, i.e. "loggedin=true&name=kevin"
- I think write the new string as the value of the cookie and return to
my aspx calling page

the second time I call the method, I check the current cookie value
again (naturally), which I'd expect to be "loggedin=true&name=kevin",
but in fact it's the original value of just "loggedin=true". This means
that when I add the second passed name-value pair (say, "gender" and
"male") the final value of the cookie is "loggedin=true&gender=male".

I say 'final', cause if I check the value of the cookie on my calling
page (i.e. without refreshing or going to another page), the value of
the cookies is STILL the original one, not the one I did with my
Response.Cookies(...) or Response.Cookies.Set(...) or any of the other
properties I've tried.

So, back to my original question: when exactly do cookies get written
to the browser? It seems to me that it's only when the current page is
reloaded or moved away from. Can that really be the case??

Many thanks

Jul 21 '06 #1
5 1531
The cookie is passed in the response of the header. You need to learn how to
reference the Server Variables collection.

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

"Kevin Blount" <ke**********@gmail.comwrote in message
news:11**********************@m79g2000cwm.googlegr oups.com...
I've setup a method (C#) that I can call, passing it a cookie name,
then a name-value pair. The idea is that as I can't append to a cookie,
I read the cookie value, append by name=pair to the end and write it
back... which works fine for adding a single name-value pair on a page.

The problem is, I want/need to add multiple name-values pairs, the
number of which changing between pages (some might have 3, another 8).
In my test scripts I've found a major problem when trying to add even 2
pairs on a single page.

The problem is this:

- the first time I call my method, it checks the current cookie value,
which is say "loggedin=true"
- it then appendsthe name-value pair passed to the method ("name" and
"kevin") as a new string, i.e. "loggedin=true&name=kevin"
- I think write the new string as the value of the cookie and return to
my aspx calling page

the second time I call the method, I check the current cookie value
again (naturally), which I'd expect to be "loggedin=true&name=kevin",
but in fact it's the original value of just "loggedin=true". This means
that when I add the second passed name-value pair (say, "gender" and
"male") the final value of the cookie is "loggedin=true&gender=male".

I say 'final', cause if I check the value of the cookie on my calling
page (i.e. without refreshing or going to another page), the value of
the cookies is STILL the original one, not the one I did with my
Response.Cookies(...) or Response.Cookies.Set(...) or any of the other
properties I've tried.

So, back to my original question: when exactly do cookies get written
to the browser? It seems to me that it's only when the current page is
reloaded or moved away from. Can that really be the case??

Many thanks

Jul 22 '06 #2
Any chance you could give me a little more info? what specifically in
Server Variables should I be looking for? Do you have a site that
explains what you refer to?

Thanks for the response though, I'll check them out myself and see what
I can find, thoguh I've spent so long looking at this issue that any
help would be much appreciated.

kevin

clintonG wrote:
The cookie is passed in the response of the header. You need to learn how to
reference the Server Variables collection.

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

"Kevin Blount" <ke**********@gmail.comwrote in message
news:11**********************@m79g2000cwm.googlegr oups.com...
I've setup a method (C#) that I can call, passing it a cookie name,
then a name-value pair. The idea is that as I can't append to a cookie,
I read the cookie value, append by name=pair to the end and write it
back... which works fine for adding a single name-value pair on a page.

The problem is, I want/need to add multiple name-values pairs, the
number of which changing between pages (some might have 3, another 8).
In my test scripts I've found a major problem when trying to add even 2
pairs on a single page.

The problem is this:

- the first time I call my method, it checks the current cookie value,
which is say "loggedin=true"
- it then appendsthe name-value pair passed to the method ("name" and
"kevin") as a new string, i.e. "loggedin=true&name=kevin"
- I think write the new string as the value of the cookie and return to
my aspx calling page

the second time I call the method, I check the current cookie value
again (naturally), which I'd expect to be "loggedin=true&name=kevin",
but in fact it's the original value of just "loggedin=true". This means
that when I add the second passed name-value pair (say, "gender" and
"male") the final value of the cookie is "loggedin=true&gender=male".

I say 'final', cause if I check the value of the cookie on my calling
page (i.e. without refreshing or going to another page), the value of
the cookies is STILL the original one, not the one I did with my
Response.Cookies(...) or Response.Cookies.Set(...) or any of the other
properties I've tried.

So, back to my original question: when exactly do cookies get written
to the browser? It seems to me that it's only when the current page is
reloaded or moved away from. Can that really be the case??

Many thanks
Jul 22 '06 #3
I forgot to ask what "The cookie is passed in the response of the
header." means in laymans terms.

Kevin
clintonG wrote:
The cookie is passed in the response of the header. You need to learn how to
reference the Server Variables collection.

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/
Jul 22 '06 #4
Hi Kevin,

I believe you may be running into an issue with your format for your Cookie
values. A little background is in order.

Cookies are included in the header portion of an HTTP message, both Request
and Response. An HTTP message is pure text. The headers are lines of text
that appear before the body of the HTTP message, which in the case of a web
site or web page, is generally a container for an HTML document (although it
can also be a container for binary data such as images, etc). The text is
parsed on both ends to build the Cookies objects on the server and client.

There can be multiple cookies in an HTTP message, and each cookie may
contain multiple attributes. The Cookie header consists of one of several
different implementations, such as "set-cookie:", "cookie:", "Set-Cookie2:",
or "Cookie2:", depending upon whether the cookies are coming from server or
client, and what version is being used. This is followed by 0 or more
comma-delimited cookies.

Each cookie consists of 0 or more name=value attributes, delimited by
semi-colons. Example:

From the server:

Set-Cookie2: Customer="WILE_E_COYOTE"; Version="1"; Path="/acme"

From the client:

Cookie: $Version="1"; Customer="WILE_E_COYOTE"; $Path="/acme"

These are examples of Cookie headers with single cookies in them.

As you have probably figured out, your cookie *content* follows a similar
convention. This could be causing some problem in the interpretation of the
cookie, which results in it being rejected by the parser.

I would recommend using multiple cookies instead.

For more information, see: http://rfc.dotsrc.org/rfc/rfc2965.html

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Chicken Salad Alchemist

What You Seek Is What You Get.
"Kevin Blount" <ke**********@gmail.comwrote in message
news:11**********************@m79g2000cwm.googlegr oups.com...
I've setup a method (C#) that I can call, passing it a cookie name,
then a name-value pair. The idea is that as I can't append to a cookie,
I read the cookie value, append by name=pair to the end and write it
back... which works fine for adding a single name-value pair on a page.

The problem is, I want/need to add multiple name-values pairs, the
number of which changing between pages (some might have 3, another 8).
In my test scripts I've found a major problem when trying to add even 2
pairs on a single page.

The problem is this:

- the first time I call my method, it checks the current cookie value,
which is say "loggedin=true"
- it then appendsthe name-value pair passed to the method ("name" and
"kevin") as a new string, i.e. "loggedin=true&name=kevin"
- I think write the new string as the value of the cookie and return to
my aspx calling page

the second time I call the method, I check the current cookie value
again (naturally), which I'd expect to be "loggedin=true&name=kevin",
but in fact it's the original value of just "loggedin=true". This means
that when I add the second passed name-value pair (say, "gender" and
"male") the final value of the cookie is "loggedin=true&gender=male".

I say 'final', cause if I check the value of the cookie on my calling
page (i.e. without refreshing or going to another page), the value of
the cookies is STILL the original one, not the one I did with my
Response.Cookies(...) or Response.Cookies.Set(...) or any of the other
properties I've tried.

So, back to my original question: when exactly do cookies get written
to the browser? It seems to me that it's only when the current page is
reloaded or moved away from. Can that really be the case??

Many thanks

Jul 22 '06 #5
Search the web to find a script that will output the collection of the
ServerVariables collection. Find an application like IECookiesView or some
other method that will help you read cookies during development if your
using IE. Use Google to search the web and study. Quite frankly Firefox (FF)
is the better browser and has better web development add-ins (especially for
managing cookies).

Do some study to learn about HTTP and how a web page is requested and how
the response is sent back to the browser. Start with this article I just
found for you [1] noting the best thing I can tell a layman who I hope is
interested in becoming a competent web developer is to take words and
terminology from newsgroup articles and learn how to search the web.

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

[1] http://www.perlfect.com/articles/http.shtml

"Kevin Blount" <ke**********@gmail.comwrote in message
news:11**********************@s13g2000cwa.googlegr oups.com...
>I forgot to ask what "The cookie is passed in the response of the
header." means in laymans terms.

Kevin
>clintonG wrote:
The cookie is passed in the response of the header. You need to learn
how to
reference the Server Variables collection.

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

Jul 22 '06 #6

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

Similar topics

4
by: Vince C. | last post by:
Hi. I'm trying to work with cookies from ASP and I've noticed cookies are stored on my machine in two distinct forms. the first form is "Cookie:<user name>@<web site>", which is a combination...
0
by: Manjunatha | last post by:
I created an asp page that writes to cookies and copied it to a japanese virtual folder. The cookie writing code is below. first.asp var sUserId = new String(); var sPassword = new String();...
3
by: Marcin Gorzynski | last post by:
Hi Our partner is using our page in a frame. That couses a problem because our domain is unable to issue the cookie also session does not work. each time you click in the frame new session is...
6
by: Tom | last post by:
I know how to create a cookie using the HttpCookie. I know about setting its domain so it can be shared. So I have created a cookie on web site A and set it to expire in 10 minutes. Now I...
1
by: Bhupesh Saini | last post by:
I am trying to call a ASPX page using HttpWebRequest class and pass cookie information to it. My ASPX pages gets called just fine, however none of the request cookies are available to the ASPX page....
1
by: FishKeeper | last post by:
I'm trying to write JavaScript code to test whether cookies are enabled by writing a cookie and then reading its value. My code works fine in Firefox, but it's not working in Internet Explorer 6. ...
3
by: Nathan Sokalski | last post by:
I am having trouble removing cookies that I created with my site. Here is the code I am using to try and remove them: If Not Request.Cookies("username") Is Nothing Then...
1
by: Richard Payne | last post by:
Hi I'm having a problem with cookies in a virtual directory, A cookie is created by an ASP application in the root folder i.e. http://xxx.yyy.com I'm unable to read this cookie in a virtual...
6
by: knkk | last post by:
I am not able to locate the cookies created by the setCookie function. They are not in the standard IE folder where temporary Internet files and cookies are placed. Does anyone know where I search,...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

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.