carlosparedes
Programmer
hi
I need to send details from feedback form to text file.
Feedbackform(example)
I want to write the CGI in ASP.
Could you help me.
Sandra
I need to send details from feedback form to text file.
Feedbackform(example)
Code:
<body bgcolor="black" text="#FFFFFF">
<form name="cart" method="Post" action="address.txt" >
<h3 align="center">Registration Form</H3><br><br><br>
Title: <select name="Title">
<option value="mister">Mr.</option>
<option value="mrs">Mrs.</option>
<option value="miz">Ms.</option>
<option value="miss">Miss</option>
</select><br><br>
First Name: <input type="text" name="fname" size="50"/>
Last Name: <input type="text" name="lname" size="50" />
</br></br>
Company: <input type="text" name="company" size="50"/><br/><br/>
Car Registration: <input type="text" name="CRegistration" size="50"/><br>Expected Date: <input type="text" name="date" size="40"/>
<br><br>
Always Expected: <input type="checkbox" name="Exp"/> <br/><br/><br><br>
<center><input type="reset" value="Reset" <input type="submit" value="Submit" />
</form>
</code>
address.txt
[Main]
Title: [Title]
Firstname: [fname].
Surname: [lname].
Company: [company].
CarReg: [CRegistration].
[Details]
ExpectedDate: [date].
AlwaysExpected: [Exp].
I want to write the CGI in ASP.
Could you help me.
Sandra