欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2024-02-25 17:35:51
ps:最近在做权限管理这个模块,发现用checkbox的地方挺多的,于是写了个简单的例子,以供以后学习和使用。 1.前端页面:

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 + " | "; 
} 
} 

#endregion
protected void page_load(object sender, eventargs e) 
{ 
if (ispostback) 
{ 
//测试调用 
getcheckboxvalue(); 
}
}