Jump to content
Xtreme .Net Talk

Recommended Posts

  • 2 years later...
Posted
Cookies are cookies are cookies. A cookie written from ASP.NET can be read from ASP/PHP/ColdFusion and vice versa. Each cookie has a name and values. All of those languages expose collection objects to read those values.

 

However, as far as I can tell, the cookie is still specific to the domain, right?

 

When I came here, for example, a new cookie appeared in my cookies folder called

 

deywiz@www.dotnetforums[1].txt

 

deywiz being my logged in name for this PC and the rest being this forum. I can open that with Notepad and see that its name is "bblastvisit"

 

I can't then go into Studio and create a new web site, and do this:

 

Dim sCookie As String
Dim objASPCookie As System.Web.HttpCookie = Request.Cookies("bblastvisit")
sCookie = objASPCookie.ToString

 

Because objASPCookie will be equal to nothing

Read the Fovean Chronicles

Because you just can't spend your whole day programming!

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...