bucephalushtml
Vendor
I need to build a table populated with items selected from a drop down list. A user would select "test 1" and click "add" button and the table would show "test 1". Then user can select "test 2" and click "add" and the table would show "test 1" and "test 2".
My real drop down box will have over one hundred options, and the users will not know to use the "ctrl" or "shift" keys to select many options from the list. They will want to select one and add then another and add, and another.
Here is what I have so far:
<html>
<head>
<title>add button test</title>
</head>
<body>
<form action="add.asp" name="add_button" id="add_button" method="post">
<table width="600" border="1" cellspacing="0" cellpadding="0">
<tr><td width="50"><select name="test_group">
<option>test 1</option>
<option>test 2</option>
<option>test 3</option>
<option>test 4</option>
</select></td>
<td width="5"> </td>
<td width="50"><input type="submit" value="add"></td>
<td>
<table width="495" border="1" cellspacing="0" cellpadding="0">
<tr>
<td><%Response.write (request.form("test_group"
)%></td>
</tr>
</table>
</td></tr>
</table>
</form>
</body>
</html>
Any help would be great thanks!
Bob C. I/T Department WYSAC
My real drop down box will have over one hundred options, and the users will not know to use the "ctrl" or "shift" keys to select many options from the list. They will want to select one and add then another and add, and another.
Here is what I have so far:
<html>
<head>
<title>add button test</title>
</head>
<body>
<form action="add.asp" name="add_button" id="add_button" method="post">
<table width="600" border="1" cellspacing="0" cellpadding="0">
<tr><td width="50"><select name="test_group">
<option>test 1</option>
<option>test 2</option>
<option>test 3</option>
<option>test 4</option>
</select></td>
<td width="5"> </td>
<td width="50"><input type="submit" value="add"></td>
<td>
<table width="495" border="1" cellspacing="0" cellpadding="0">
<tr>
<td><%Response.write (request.form("test_group"
</tr>
</table>
</td></tr>
</table>
</form>
</body>
</html>
Any help would be great thanks!
Bob C. I/T Department WYSAC