S
Shapper
Hello,
I have a Cookie which can have one or many values.
One of this values is "Culture".
How can I change the "Culture" value which in inside the cookie?
This is what I have:
Dim cookie As HttpCookie = Request.Cookies("MyWebSite")
If Not cookie Is Nothing Then ' Cookie MyWebSite exists
??? NEED to change the existing value of culture from en-US to fr-FR
Else ' Cookie MyWebSite Does Not Exist
' Create Cookie and Add "culture" value to it.
Dim newCookie As HttpCookie = New HttpCookie("MyWebSite")
newCookie.Values.Add("culture", "en-US")
newCookie.Expires = #01/01/3000#
Response.Cookies.Add(newCookie)
End If
I have a Cookie which can have one or many values.
One of this values is "Culture".
How can I change the "Culture" value which in inside the cookie?
This is what I have:
Dim cookie As HttpCookie = Request.Cookies("MyWebSite")
If Not cookie Is Nothing Then ' Cookie MyWebSite exists
??? NEED to change the existing value of culture from en-US to fr-FR
Else ' Cookie MyWebSite Does Not Exist
' Create Cookie and Add "culture" value to it.
Dim newCookie As HttpCookie = New HttpCookie("MyWebSite")
newCookie.Values.Add("culture", "en-US")
newCookie.Expires = #01/01/3000#
Response.Cookies.Add(newCookie)
End If