learning a bit about web interacting with C#. Need to go to the website www.darkorbit.com, login with username/password, and get the value of a span with a specific ID on the in-logged user page.
I tried using HtmlAgilityPack, but it doesn't have an option to submit the login form and proceed to the in-logged user page.
I have completed this using the web client, but the consumption of the RAM is critical, therefore I believe using HttpWebRequest would be the best solution, although I have no clue how to do it, and I haven't found any similar solutions on the web..