Question

How to set value on the cookie in client side then after i need to get value in server side .

Could please give me one example i would really appreciate you

No correct solution

OTHER TIPS

Create cookie:

document.cookie="cookiename=John Doe";

Read cookie:

Request.Cookies(cookieName)

More reading about cookies:
http://www.w3schools.com/js/js_cookies.asp
http://www.w3schools.com/ASP/asp_cookies.asp

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top