D
D.
Hi,
I defined some cookies in order to pass values between pages in my
application.
The problem is that when i request them with:
cookie = Request.Cookies("mycookie")
x = cookie.Value (suppose the value = 'yes')
Response.Write(x)
i get:
'mycookie=yes' instead of just 'yes'.
Any way to avoid the 'mycookie=' or i have to parse the whole string?
Thanks
D
I defined some cookies in order to pass values between pages in my
application.
The problem is that when i request them with:
cookie = Request.Cookies("mycookie")
x = cookie.Value (suppose the value = 'yes')
Response.Write(x)
i get:
'mycookie=yes' instead of just 'yes'.
Any way to avoid the 'mycookie=' or i have to parse the whole string?
Thanks
D