<form action="registerdo.aspx" method="post">
<table border="1">
<tr>
<td>
用户名:
</td>
<td>
<input id="uname" type="text" onblur="check(this.value)" /><div style="display: inline"
id="unamediv">
</div>
</td>
</tr>
<tr>
<td>
密码:
</td>
<td>
<input id="upass" type="password" />
<div style="display: inline">
</div>
</td>
</tr>
<tr>
<td colspan="2">
<input id="Button1" type="button" value="注册" onclick="register()"/>
</td>
</tr>
</table>
</form>
这是一个普通的静态页面中的一段代码,大体意思能看明白吧,重点是Form的那个Action的值,这个静态页面的Form表单所提交的路径是个aspx页面,我想请教各位大哥,怎样能在那个aspx页面获得值呢
用Request.Form
但你的表单要修改一下,用Request.Form是按元素的name取值的,例如:
<input id="uname" name="uname" type="text" onblur="check(this.value)"/>
上面的用:
string uname = Request.Form["uname"];
参考:http://www.cnblogs.com/fish-li/archive/2011/07/17/2108884.html
才疏学浅,多谢赐教
request.Form(控件名)就行了