cookiecontainer

CookieContainer and WebServices

I have WebService: public class Service1:WebService { private readonly MNConnection _conn; private MNLpu _lpu; public Service1() { _conn = new MNConnection(); } [WebMethod(EnableSession = true)] public void Open(string login, string password) { _conn.Open(...

Quirky cookie behaviour

A colleague of mine asked me to take a look at some cookie behaviour. He created simple web app that created a cookie and inserted the value of a text field, he then checked the cookie collection on the next page to see it had been inserted and read back correctly. All simple really. On the second page however he noted the was more th...