首页 > 编程 > .NET > 正文

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

2024-07-10 13:27:49
字体:
来源:转载
供稿:网友

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

1.前端页面:

<form method="get" runat="server"> <input type="checkbox" value="3" />张三 <input type="checkbox" value="4" />李四 <input type="checkbox" value="5" />王五 <input type="checkbox" value="6" />赵六 <input type="checkbox" value="7" />孙琦 <input type="checkbox" value="8" />猪八 <input type="submit" 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(); }}

Tags:WebForm checkbox

上一篇:.NET中获取程序根目录的常用方法介绍

下一篇:下面没有链接了

相关文章

文章评论

最 近 更 新

热 点 排 行

关于我们 - 广告合作 - 联系我们 - 免责声明 - 网站地图 - 投诉建议 - 在线投稿

CopyRight © 2006-2014 脚本之家 JB51.Net , All Rights Reserved

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表