我有一个填充了2个变量的选择框。
<select name="custsel" id="custsel">
<% if Request.Form("custsel") = "All" then %>
<option value="All" selected>All</option>
<% else %>
<option value="All">All</option>
<% end if %>
<%While Not custsel.EOF%>
<option value="<%= custsel("custname") %>+<%= custsel("city") %>"><%= custsel("custname") %> :<%= custsel("city") %></option>
</select>
但是当我在下一页检查request.form信息时,我只收到第一个变量。所以,如果我交换
<%= custsel("custname") %>+<%= custsel("city") %>">
是
<%= custsel("city") %>+<%= custsel("custname") %>">
我会在下一页的request.form信息中显示城市名称。
我尝试使用隐藏输入传递变量,但我仍然只能显示第一个变量。为此,我添加了
onchange="document.form1.hiddeninput1.value=this.value"
是否有更简单的方法来传递这两个变量?