WebForm获取checkbox选中的值(几个简单的示例)

时间:2021-05-26

PS:最近在做权限管理这个模块,发现用checkbox的地方挺多的,于是写了个简单的例子,以供以后学习和使用。

1.前端页面:

<form id="form1" method="get" runat="server"> <input name="chk_per" type="checkbox" value="3" />张三 <input name="chk_per" type="checkbox" value="4" />李四 <input name="chk_per" type="checkbox" value="5" />王五 <input name="chk_per" type="checkbox" value="6" />赵六 <input name="chk_per" type="checkbox" value="7" />孙琦 <input name="chk_per" type="checkbox" value="8" />猪八 <input type="submit" id="btnOK" value="提交" /> </form>

2.后台方法:

#region 获取从前端页面回传过来的 CheckBox 的值 void GetCheckBoxValue() /// <summary> /// 获取从前端页面回传过来的 CheckBox 的值 /// <para>Request.Form["chk_per"] 以逗号分割,获取所有选中的 CheckBox 的值</para> /// </summary> private void GetCheckBoxValue() { string user = Request["chk_per"]; string[] users = user.Split(new[] { "," }, StringSplitOptions.RemoveEmptyEntries); string s = string.Empty; foreach (var item in users) { s += item + " | "; } } #endregionprotected void Page_Load(object sender, EventArgs e) { if (IsPostBack) { //测试调用 GetCheckBoxValue(); }}

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章