页面通过post传值,一个小问题,帮忙看看
我有一个测试页面a.aspx,通过post传值到b.aspx页面,
其中有一个男女性别选项,
<input type="radio" name="sex" id="txtMan" checked="true" runat="server"/><label for="man">男</label><input type="radio" name="sex" id="txtWomen" runat="server" /><label for="woman">女</label>
lSex.Text = Request.Form["txtMan"] == "true" ? "男":"女";