I want to make an installing application using vb.net(not asp.net) where i can login to a website and submit form with out using a browser(like facebook@desktop). I have a little knowledge in php,mysql and vb.net. I have never done web application programming in vb.net. I have searched for this in google but didnt find any useful tutorials.if any one of you have a simple code or tutorial for this,can you please paste the link.
Advance thanks
I’m not sure I see the practicality to doing something like this, but the most direct route would be to use custom HttpRequests and parse the responses. You would need to configure the GET/POST headers of the request, etc, and then you would also have to have a means of rendering or at least parsing through the returned html response.
VB.Net has a browser built into the winforms controls, though. It might be simpler just to embed that into any application you are using.