如何将复选框列表中选中的记录写入数据库?

发布于 2024-11-16 18:44:33 字数 279 浏览 1 评论 0原文

我的 asp.net 项目有一个小问题。我的 asp.net 项目中有 register.aspx、login.aspx 和 default.aspx 页面。

顺便说一句,将这些用户想要的信息输入到 register.aspx 页面内的文本框中,然后单击按钮, 信息正在写入数据库。总之,我的项目就是这样。 我的问题是;我将使用复选框列表进行多项选择,并将在复选框列表中选择的项目写入数据库内的表中。

综上所述,如何将checkboxlist中的那些记录写入数据库呢?

提前致谢。

I have a little problem regarding my asp.net project.I have register.aspx,login.aspx and default.aspx pages inside of my asp.net project.

By the way,entering those informations which wanted from those users into the textboxes inside of the register.aspx page and after clicked the button,
the information is writing into the database.In sum,my project is that.
My question is;I will give multiple-choice with checkboxlist and I will write to the table inside of the database those items which choose in the checkboxlist.

In sum,How to write into the database those records in the checkboxlist?

thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小鸟爱天空丶 2024-11-23 18:44:33

您必须迭代CheckBoxList

  String selectedItem = string.Empty;
    foreach (ListItem item in CheckBoxList1.Items)
    {
        if (item.Selected)
        {
            string.Format(selectedItem, ",", item.Text);
        }
    }

    if (selectedItem != string.Empty)
    {
        selectedItem = selectedItem.Substring(1);
    }

    //selectedItem Will give you Id's of Selected checkbox 3,4,7 

You have to iterate CheckBoxList

  String selectedItem = string.Empty;
    foreach (ListItem item in CheckBoxList1.Items)
    {
        if (item.Selected)
        {
            string.Format(selectedItem, ",", item.Text);
        }
    }

    if (selectedItem != string.Empty)
    {
        selectedItem = selectedItem.Substring(1);
    }

    //selectedItem Will give you Id's of Selected checkbox 3,4,7 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文