我来自 Rails,所以我有点迷茫,因为这是我第一次接触 ASP。
我正在开发一个旧版 ASP 应用程序,我有一个经典 ASP 表单,并且有两个输入。我将如何查看和使用这些参数以便我可以使用它们来更新我的记录?它们是否默认存储在某种变量中?我是在表格页面还是之后的页面上执行此操作?
我的输入:
<input class="textboxsm" type="text" onkeypress="return numbersonly(window.event.keyCode,1)" onblur="poswarnings(1);updateTotals();" onfocus="rowfocus=0" value="2" maxlength="4" size="2" name="ia1" style="text-align:right;">
这是提交表单的按钮:
<input width="116" type="image" height="70" onmouseout="this.src='art/order_continue.gif'" onmouseup="this.src='art/order_continue.gif'" onmousedown="this.src='art/down_order_continue.gif'" onclick="return orderdone()" name="submitorder" alt="Done" src="art/order_continue.gif">
那么我将如何从我的输入中提取价值呢?