I hope this is being posted in the correct place. I would like to create a basic form just so users could input their email address. The HTML part is pretty simple and self explanatory, for example on the W3 schools it gives this example:
Code:
<form action="demo_form.asp" method="get">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<input type="submit" value="Submit">
</form>
However, in order to receive the input from the users, it will write it to an asp file correct, or wrong? In this example to "demo_form.asp" BUT I do not understand how to write that asp form or how to even upload it or where it goes or where to put the asp code if I come across an already written one or where it goes or anything, I'm very lost, on how to just get the stuff the user inputs. Thanks for any advice or direction.
Bookmarks