when I clik the form Submit the combo box goes back to the default.
How can I make it stay where it is untill something else is picked.
Here is my code:
----------------------
<html>
<%@ Language=VBScript %>
<head>
<title>Tampa Convention Center</title>
</head>
<body>
<%
Dim mouseClickX, mouseClickY, XYNum
mouseClickX = CLng(Request.Form("x")
mouseClickY = CLng(Request.Form("y")
XYNum = mouseClickX & "-" & mouseClickY
%>
<form action="TradeShow2003.asp" method="post">
<select size="1" name="Vendor">
<option selected>Choose a Vendor</option>
<option value="280-285">American CompuSystems 511</option>
<option value="320-470">The Academy 503</option>
<option value="105-410">AIIM-Gulf Coast Chapter 202</option>
</select> X-Y Values > <input type="text" name="XYvalue" Value="<%=XYNum%>" size="15"><br>
<input type="image" src="images/TpaConCtr.jpg">
<p> </p>
</form>
<p>Copyright 2001, BarcodeONE Corporation </p>
</body>
</html>
---------------------------------------
TIA
DougP, MCP
Visit my WEB site to see how Bar-codes can help you be more productive
How can I make it stay where it is untill something else is picked.
Here is my code:
----------------------
<html>
<%@ Language=VBScript %>
<head>
<title>Tampa Convention Center</title>
</head>
<body>
<%
Dim mouseClickX, mouseClickY, XYNum
mouseClickX = CLng(Request.Form("x")
mouseClickY = CLng(Request.Form("y")
XYNum = mouseClickX & "-" & mouseClickY
%>
<form action="TradeShow2003.asp" method="post">
<select size="1" name="Vendor">
<option selected>Choose a Vendor</option>
<option value="280-285">American CompuSystems 511</option>
<option value="320-470">The Academy 503</option>
<option value="105-410">AIIM-Gulf Coast Chapter 202</option>
</select> X-Y Values > <input type="text" name="XYvalue" Value="<%=XYNum%>" size="15"><br>
<input type="image" src="images/TpaConCtr.jpg">
<p> </p>
</form>
<p>Copyright 2001, BarcodeONE Corporation </p>
</body>
</html>
---------------------------------------
TIA
DougP, MCP
Visit my WEB site to see how Bar-codes can help you be more productive