i have this code to extract all form input element in html document. currently, i cant get select, textarea and other elements except input element....Dim htmldoc As HtmlDocument = New HtmlDocument()
htmldoc.LoadHtml(txtHtml.Text)
Dim roo...
I'm trying to parse the form action value and input name with value from the following HTML code:... <form method="post" action="actionURL" autocomplete="" name="login_form" id="login_form" onsubmit="return hash2(this)">
<input typ...