Hello.
I want to make forms in ASP (login and contact forms)
Let's start with the contact page: (where the form is)
(is this right, and am I gonna call it for example; contact.html or contact.asp?
<html>
<head>
<title>Hope you can help me...</title>
</head>
<body>
<form action="thanks.asp">
Name: <input type="text">
E-Mail: <input type="text">
<input type="submit" value="Submit">
</form>
</body>
</html>
And what I wonder now, is what am I gonna have in the thanks.asp file. Anyone who knows?
And if you don't mind, can you help me with a login form too?
And a final question.
- Do I need anything to make ASP? (If I do, where can I get it)
Anders