I’m trying to write an C# application that can automatically send user id, password and login (submit the “Login” button) to a website (example http://abc.com) and get data returned in Httprequest. How do i do that? I’m stucking… Thanks for any your recommend! 😀
I’m trying to write an C# application that can automatically send user id, password
Share
I use these functions…
With first you can pass an array with param name and param value, with second you can pass the whole string.
Bear in mind that this works (it returns HTML page that you can parse as you please) if POST is executed without javascript code before… so take a good look to web page source.