I want to send a standard HTML GET form using my vb.net backend, but dont know how regular html forms work with vb.net Can someone give me a high level overview so I can create this?
I have made a form completely standard html form with two inputs username and password and a submit input.
How would I access these variables in vb.net from here?
<form name="LoginForm" action="Site.master.vb" method="get" onclick="Update_Login">
<input type="text" name="username" ID="txtLogin1" class="formfield"/>
<input type="password" name="passphrase" ID="txtPass1" class="formfield"/>
<input type="submit" value="Login" ID="btnLogin1">
</form>
I just want to submit the form with GET on vb.net