欢迎来到天天文库
浏览记录
ID:43921376
大小:45.00 KB
页数:10页
时间:2019-10-16
《LESSON14在线投票实例》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、在线投票实例------单选与多选单选投票单选投票顾名思议,只允许用户做单一投票,单选投票控件有两个,一个是RadioButton,另一个是RadioButtonList。前者是单选投票按钮,后者是单选投票按钮列表。RadioButton控件一般用于不读取数据库且选项极少通常是两个选项时的投票才使用。RadioButtonList控件用于选项较多且要从数据库中读取数据时使用。RadioButton控件的使用方法从工具箱中拉出两个RadioButton,设置RadioButton的Text文本值和v
2、alue键值,同时设置两个RadioButtonList控件的GroupName为同一组.实现代码为:前台代码:3、ick="Button1_Click"Text="提交"/>后台代码:protectedvoidButton1_Click(objectsender,EventArgse){if(this.RadioButton1.Checked)//判断第一个单选框是否被选中{Response.Write(this.RadioButton1.Text);}else//因为是单选题,只有两个选项,所以第一个没选中则第二个必被选中{Response.Write(this.RadioButton2.Text);}}R4、adioButtonList控件使用RadioButtonList的中文名称为单选按钮列表,其功能更加强大,几乎百分之九十的单选功能都是通过这个控件实现。单选按扭列表的项的内容可以通过预设与绑定数据库两种方法实现,人为预设非常简单,只要在RadioButtonList的属性窗口中点击Items属性的Collection,进行选项的添加和编辑。而绑定数据库的实现就相对复杂,具体实现如下:首先在数据库中新建vote数据库,把Sql数据库的登陆方式设置为Sql与windows混合模式,此例中数据库的登陆5、用户名为sa,密码为空。在vote数据库中新建表vote,设置其有三个字段,一个字段是id,表示是第几个选项,一个字段是content,表示选项的文本内容,一个字段是num,表示这个选项的票数有几票前台代码:6、/>后台代码:在Page_Load事件中编写事件if(!this.IsPostBack)//这句必不可少,表示只有第一次打开网页才绑定{SqlConnectioncon=newSqlConnection("server=.;uid=sa;pwd=;database=proves");con.Open();SqlCommandchose=newSqlCommand("select*fromvote",con);SqlDataReadercho=chose.ExecuteReader();this.R7、adioButtonList1.DataSource=cho;this.RadioButtonList1.DataTextField="content";this.RadioButtonList1.DataValueField="id";this.RadioButtonList1.DataBind();con.Close();}点击提交按钮之后:protectedvoidButton1_Click(objectsender,EventArgse){SqlConnectioncon=newSqlCo8、nnection("server=.;uid=sa;pwd=;database=vote");con.Open();stringid=this.RadioButtonList1.SelectedValue;SqlCommandchose=newSqlCommand("updatevotesetnum=num+1whereid="+id,con);chose.ExecuteNonQuery();con.Close();}//获得单选列表框中把选中项的键值,并在数据库中把这个键值对应项
3、ick="Button1_Click"Text="提交"/>后台代码:protectedvoidButton1_Click(objectsender,EventArgse){if(this.RadioButton1.Checked)//判断第一个单选框是否被选中{Response.Write(this.RadioButton1.Text);}else//因为是单选题,只有两个选项,所以第一个没选中则第二个必被选中{Response.Write(this.RadioButton2.Text);}}R
4、adioButtonList控件使用RadioButtonList的中文名称为单选按钮列表,其功能更加强大,几乎百分之九十的单选功能都是通过这个控件实现。单选按扭列表的项的内容可以通过预设与绑定数据库两种方法实现,人为预设非常简单,只要在RadioButtonList的属性窗口中点击Items属性的Collection,进行选项的添加和编辑。而绑定数据库的实现就相对复杂,具体实现如下:首先在数据库中新建vote数据库,把Sql数据库的登陆方式设置为Sql与windows混合模式,此例中数据库的登陆
5、用户名为sa,密码为空。在vote数据库中新建表vote,设置其有三个字段,一个字段是id,表示是第几个选项,一个字段是content,表示选项的文本内容,一个字段是num,表示这个选项的票数有几票前台代码:6、/>后台代码:在Page_Load事件中编写事件if(!this.IsPostBack)//这句必不可少,表示只有第一次打开网页才绑定{SqlConnectioncon=newSqlConnection("server=.;uid=sa;pwd=;database=proves");con.Open();SqlCommandchose=newSqlCommand("select*fromvote",con);SqlDataReadercho=chose.ExecuteReader();this.R7、adioButtonList1.DataSource=cho;this.RadioButtonList1.DataTextField="content";this.RadioButtonList1.DataValueField="id";this.RadioButtonList1.DataBind();con.Close();}点击提交按钮之后:protectedvoidButton1_Click(objectsender,EventArgse){SqlConnectioncon=newSqlCo8、nnection("server=.;uid=sa;pwd=;database=vote");con.Open();stringid=this.RadioButtonList1.SelectedValue;SqlCommandchose=newSqlCommand("updatevotesetnum=num+1whereid="+id,con);chose.ExecuteNonQuery();con.Close();}//获得单选列表框中把选中项的键值,并在数据库中把这个键值对应项
6、/>后台代码:在Page_Load事件中编写事件if(!this.IsPostBack)//这句必不可少,表示只有第一次打开网页才绑定{SqlConnectioncon=newSqlConnection("server=.;uid=sa;pwd=;database=proves");con.Open();SqlCommandchose=newSqlCommand("select*fromvote",con);SqlDataReadercho=chose.ExecuteReader();this.R
7、adioButtonList1.DataSource=cho;this.RadioButtonList1.DataTextField="content";this.RadioButtonList1.DataValueField="id";this.RadioButtonList1.DataBind();con.Close();}点击提交按钮之后:protectedvoidButton1_Click(objectsender,EventArgse){SqlConnectioncon=newSqlCo
8、nnection("server=.;uid=sa;pwd=;database=vote");con.Open();stringid=this.RadioButtonList1.SelectedValue;SqlCommandchose=newSqlCommand("updatevotesetnum=num+1whereid="+id,con);chose.ExecuteNonQuery();con.Close();}//获得单选列表框中把选中项的键值,并在数据库中把这个键值对应项
此文档下载收益归作者所有