码迷,mamicode.com
首页 > 其他好文 > 详细

将选中的复选框的信息返回给用户的方法

时间:2015-05-29 07:26:07      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:

/// <summary>
/// 自定义方法,获得复选框中选中的值,用指定的分隔符隔开
/// </summary>
/// <param name="split">分隔符</param>
/// <param name="chk">复选框名称</param>
/// <returns>返回复选框中选中的值</returns>
string GetCheckBoxItems(string split, params CheckBox[] chk)
{
string items = string.Empty;
for (int i = 0; i < chk.Length; i++)
{//将每一个选中的复选框的文本和分隔符累加到字符串中
if (chk[i].Checked)
{
items += chk[i].Text + split;
}
}
if (!string.IsNullOrEmpty(items))
{//如果有选中字符串,则将最后一个分隔符去掉
items = items.Substring(0, items.Length - 1);
}
return items;
}

将选中的复选框的信息返回给用户的方法

标签:

原文地址:http://www.cnblogs.com/ai1156250555/p/4537489.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!