How to login programmatically
Once, you're logged in the following uri will give you a pdf document.
http://mysite.com/wincgi/file.dll?reportloc=...param=...bla
Now I need to grab the content of that pdf doc and save it. I know how to use HttpWebRequest. But I'm not logged in that uri will give me the content of "login error" page. So, how would I login programmatically first before accessing that pdf doc uri?

