D
Doug
This should work, but I can't see the value when it hits the ASP code. I am
trying to get the hang of this before moving forward with my project
HTML code
<form action="updTicket.asp" method="post">
<select name="selSA" size="1" style="width: 200px; font-size: 10px;">
<option value="">Team 1</option>
<option value="">Team 2</option>
<option value="">Team 3</option>
<input type=submit value="Update">
<input type=reset value="Reset">
</form>
ASP code
updSA = request.form("selSA")
response.write updSA
response.end
trying to get the hang of this before moving forward with my project
HTML code
<form action="updTicket.asp" method="post">
<select name="selSA" size="1" style="width: 200px; font-size: 10px;">
<option value="">Team 1</option>
<option value="">Team 2</option>
<option value="">Team 3</option>
<input type=submit value="Update">
<input type=reset value="Reset">
</form>
ASP code
updSA = request.form("selSA")
response.write updSA
response.end