I’m looking for some information on interacting with websites with C#. I would like to navigate threw pages and also submit data.
I’m not really sure what way to go about it, Also I’m not sure if C# is even the best choice as far as language.
Any thoughts ? Reference Materials ?
Thanks
You can request a web page using C# with something like this (stolen from here):
Next, I’d use the HTML Agility Pack to parse the HTML and do whatever you need.