Hello everyone.
So I've been working on an small tool, that is using httpwebrequests, its not a bad so far I've got login function and list view loading data from site.
But problem is now cookie container so i can do other things than just loading, like editing data.
Uri is subdomain so no www. in it also its https.
When i try to use:
CookieContainer cookies = new CookieContainer();
request.CookieContainer = cookies;
Nothing actually happens, container is still empty? So i cant reuse cookie on new function.. Any ideas?
Thank you for your time and help!