那位大侠帮帮忙,我想将选中的radiobuttonlist的信息添加到数据库中,要怎么弄?
比如,。红色。蓝色。白色如果我选择红色的花,再数据库中可以看见我是在何时(系统时间)选择了哪一个选项。数据库中看见:姓名时间选项AAA2008-12-1600;00;00...
比如,
。红色
。蓝色
。白色
如果我选择红色的花, 再数据库中可以看见我是在何时(系统时间)选择了哪一个选项。
数据库中看见:
姓名 时间 选项
AAA 2008-12-16 00 ;00 ;00 红色 展开
。红色
。蓝色
。白色
如果我选择红色的花, 再数据库中可以看见我是在何时(系统时间)选择了哪一个选项。
数据库中看见:
姓名 时间 选项
AAA 2008-12-16 00 ;00 ;00 红色 展开
3个回答
展开全部
很简单
首先 没有radiobuttonlist 这个东西
你要先 放一个 groupbox控件
然后把3个radiobutton 放到groupbox里
然后判断一下 if(radiobutton1.Checked)
string str=radiobutton1.text.tostring();
....以此类推
然后 你说的时间 要在数据库里加一列时间 然后 你Insert的时候 那列写 GetDate() 就可以了 我说的 是SQL
姓名很简单 就不说了
就这些了 你自己再看看
【拿不拿分不要紧,希望某些人不要昧着良心来骗分
骗分是小,误导所有关心这问题的人是大
我不是为了分而来,但最后很多人愿意把分给我!】
首先 没有radiobuttonlist 这个东西
你要先 放一个 groupbox控件
然后把3个radiobutton 放到groupbox里
然后判断一下 if(radiobutton1.Checked)
string str=radiobutton1.text.tostring();
....以此类推
然后 你说的时间 要在数据库里加一列时间 然后 你Insert的时候 那列写 GetDate() 就可以了 我说的 是SQL
姓名很简单 就不说了
就这些了 你自己再看看
【拿不拿分不要紧,希望某些人不要昧着良心来骗分
骗分是小,误导所有关心这问题的人是大
我不是为了分而来,但最后很多人愿意把分给我!】
展开全部
没有测试。。试试看
以SQL数据库为例,SqlServer 身份登陆 用户名 sa 密码123 库名为test
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
this.RadioButtonList1.AutoPostBack = true;
}
}
protected void RadioButtonList1_SelectedIndexChanged(object sender, EventArgs e)
{
SqlConnection conn = new SqlConnection("server=.;database=test;uid=sa;pwd=123");
SqlCommand cmd = conn.CreateCommand();
cmd.CommandText = string.Format("insert into color (c_name,c_time,c_type) values ('AAA',getDate(),'{}')", this.RadioButtonList1.SelectedValue);
conn.Open();
cmd.ExecuteNonQuery();
conn.Close();
}
}
以SQL数据库为例,SqlServer 身份登陆 用户名 sa 密码123 库名为test
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
this.RadioButtonList1.AutoPostBack = true;
}
}
protected void RadioButtonList1_SelectedIndexChanged(object sender, EventArgs e)
{
SqlConnection conn = new SqlConnection("server=.;database=test;uid=sa;pwd=123");
SqlCommand cmd = conn.CreateCommand();
cmd.CommandText = string.Format("insert into color (c_name,c_time,c_type) values ('AAA',getDate(),'{}')", this.RadioButtonList1.SelectedValue);
conn.Open();
cmd.ExecuteNonQuery();
conn.Close();
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
没有测试。。试试看
以SQL数据库为例,SqlServer 身份登陆 用户名 sa 密码123 库名为test
using System;
using System.Data;
以SQL数据库为例,SqlServer 身份登陆 用户名 sa 密码123 库名为test
using System;
using System.Data;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询