Hello,
I love this forum's new look by the way!
I have coded a form that needs to be posted by the GET method using
ASP and sent to email and do not know how to go about doing this. Any help at all in this area is greatly appreciated and needed.
My code is as follows:
<?
xml version = "1.0"?>
<DOCTYPE
html PUBLIC "-//
W3C//
DTD XHTML 1.0 Strict//EN"
"
http://www.w3.org/TR/xhtmll/
DTD/xhtmll-strict.
dtd">
<
html xmlns="
http://www.www.w3.org/1999/
xhtml">
<head>
<title> Rebecca Brown Lab 2 </title>
<!--Rebecca Brown, February 19, 2005, February 20, 2005, Lab2, To create a student input information form.>
<h2>Please fill out the Student Information Form </h2>
</head>
<body>
Student information for Wake Tech
</p>
<form method ="get" action=myscript.
asp">
<label>Student Name:
<input name="name" type="text" size="25"
max length = "30"/>
</label>
<label>Student Password:
<input name="password" type="password" size="25"
max length = "30"/>
</label>
<label>SSN No.:
<input name="ssn" type="text" size="9"
max length = "11"/>
</label>
<label>Email:
<input name="email" type="text" size="25"
max length = "30"/>
</label>
<label>Major:
<input name="major" type="text" size="30"
max length = "40"/>
</label>
<hr>
</br>
What classes would you like to take? - <label>Visual Basic:
<input name="class" type="checkbox"
value = "Visual Basic"/>
</label>
- <label>Intro to Internet:
<input name="class" type="checkbox"
value = "Intro to Internet"/>
</label>
- <label>Art:
<input name="class" type="checkbox"
value = "Art"/>
</label>
- <label>E-commerce:
<input name="class" type="checkbox"
value = "E-commerce"/>
</label>
Please select your favorite Instructor.</br>
<ul>
[*]<label>P. Chen:
<input name="teacher" type="radio"
value = "Chen"/>
</label>
[*]<label>G. Wallace:
<input name="teacher" type="radio"
value = "Wallace"/>
</label>
[*]<label>William Swanson:
<input name="teacher" type="radio"
value = "Swanson"/>
</label>[/list]
<hr>
<label>
Please select a book of interest
<select name = "book">
<option selected="selected">
HTML for the WWW </option>
<option>Internet and WWW Programming </option>
<option>Intro to E-Commerce </option>
<option>Unix Admin </option>
</select>
</label>
<label> Tell us what you like about the school:</br>
<textarea name="school" rows="4" cols = "36">
Enter your comments here.</textarea>
</label></p>
<input type="submit" value="Submit"/>
<input type="reset" value="Reset"/>
</form>
</body>
</
html>
Thank you for any help you can provide me.
Rebecca