double cookie

A

Arne

I have classic ASP cookies
response.Cookies("YT_UserInfo")("1") = value
I tried to read the in Asp.Net /C#
Request.Cookies["YT_CustomerInfo"]["1"].ToString();
But it does not work.
What am I doing wrong?
 
A

Arne

That is correct. After I make that correction, my cookies stills do not line
up.
Reading a classic asp cookie in Asp.net is still a problem. I had to write
my own cookie reading method.
--
Certified Geek, Professional Data Dude
(Doing classic ASP to get paid, and WPF for fun.)


Scott M. said:
Could it be that you are writing "YT_UserInfo" and reading
"YT_CustomerInfo"?


Arne said:
I have classic ASP cookies
response.Cookies("YT_UserInfo")("1") = value
I tried to read the in Asp.Net /C#
Request.Cookies["YT_CustomerInfo"]["1"].ToString();
But it does not work.
What am I doing wrong?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top