爱好有3个,我写3个check控件
1.<asp:checkbox runat=“serve” ID=“book” text=“书籍”/>
2.<asp:checkbox runat=“serve” ID=“sport” text=“运动”/>
3.<asp:checkbox runat=“serve” ID=“game” text=“游戏”/>
想用sql=“insert into 表 where value()”来获取text里面的内容(就是我选书籍,数据库就会出现书籍,我选游戏,运动,数据库里面就会有游戏,运动)
asp.net中数据库如何获得checkbox控件里面的text的内容
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
3条回答 默认 最新
- CSDN专家-showbo 2021-11-19 23:56关注
如果只能选一个,题主应该用RadioButtonList控件,而不是checkbox,CheckBox是复选框可以多选。
<%@ Page Language="C#" AutoEventWireup="true" %> <script runat="server"> protected void Page_Load(object sender, EventArgs e) { } protected void button1_Click(object sender, EventArgs e) { string value = ""; if (book.Checked) value =book.Text; else if (sport.Checked) value =sport.Text; else if (game.Checked) value =game.Text; //radiobutton用下面的代码 //value = rb.SelectedValue; string sql = "insert into 表(表中的字段)values('"+value+"')"; Response.Write(sql); //执行sql语句的代码 } </script> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> </head> <body> <form id="form1" runat="server"> <asp:RadioButtonList ID="rb" runat="server"> <asp:ListItem Value="书籍">书籍</asp:ListItem> <asp:ListItem Value="运动">运动</asp:ListItem> <asp:ListItem Value="游戏">游戏</asp:ListItem> </asp:RadioButtonList> <asp:checkbox runat="server" ID="book" text="书籍"/> <asp:checkbox runat="server" ID="sport" text="运动"/> <asp:checkbox runat="server" ID="game" text="游戏"/> <asp:Button runat="server" Text="提交" OnClick="button1_Click" ID="button1" /> </form> </body> </html>
有帮助麻烦点下【采纳该答案】,谢谢~~有其他问题可以继续交流~
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 1无用
悬赏问题
- ¥20 mpich安装完成后出问题
- ¥15 multisim仿真
- ¥15 stm32循迹小车代码问题
- ¥15 输入一堆单词,使其去重输出
- ¥15 qc代码,修改和添加东西
- ¥50 Unity的粒子系统使用shadergraph(内置管线)制作的一个顶点偏移shader,但是粒子模型移动时,顶点也会偏移
- ¥15 如何用python处理excel的数据(极值标准化)
- ¥15 三向应力状态求剪应力
- ¥15 jupyter notebook如何添加libGL.so.1库
- ¥20 easyPoi能否实现下拉多选或者复选框