浙经贸2007 135号:如何在下一个页面得到radio的值(c# asp.net)

来源:百度文库 编辑:杭州交通信息网 时间:2024/05/03 06:58:18
<form id="form1" name="form1" method="post" action="login.aspx">
<label for="name">用户名:</label>
<input type="text" name="name" class="fm"/ size="10" maxlenght="20"><br>
<label for="password">密    码:</label>
<input type="password" name="password" class="fm" size="10" ><br>
<input type="radio" name="rd1" value="admin" />管理员
<input type="radio" name="rd1" value="student" checked="checked" />学生<br>
       
<input name="buttom" type="submit" value="确定" class="fm" />    
<input type="button" name="reset" value="取消" onclick="out()" class="fm"/>
</form>

如何在下一个页面中得到传过去的radio的值?