VB.Net Automated login to WordPress site
Leave a reply
Here is a handy little method that will automate the login process of a WordPress blog/site using VB.Net. This has many uses, such as scraping data from WordPress blogs, adding new posts to a blog from an application, or any other uses you can think of.
Private Sub LogInToWordpress(ByVal username As String, ByVal password As String)
Dim wbd As HtmlDocument = WebBrowser1.Document
Dim usernameinput, pas [Continue Reading]