Cookies in ASP.NET webfarm
ASP.NET
1
Posts
1
Posters
0
Views
1
Watching
-
Hello, I am using following code to add cookie. HttpCookie myCookie = new HttpCookie("MyName", "Ashish"); myCookie.HttpOnly = true; Response.AppendCookie(myCookie); If my application will get deployed on webfarm, is there any implication of using this cookie? I am accessing this cookie at few places in my application.
- ashish