展开全部
if (textBox1.Text != "")
{
comboBox1.Items.Add(textBox1.Text.Trim());
}
如果item是在先存入数据库,在从数据库中取,那就先combobox1.clear();
{
comboBox1.Items.Add(textBox1.Text.Trim());
}
如果item是在先存入数据库,在从数据库中取,那就先combobox1.clear();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
假设button的id为button1,textbox的id为textbox1,如果你不分层的话,可以用下边的代码直接实现
protected void Button1_Click(object sender, EventArgs e)
{
string value = this.TextBox1.Text;
SqlConnection conn = new SqlConnection("server=.;database=数据库名;uid=你的登录名;pwd=你的登陆密码");
SqlCommand cmd = new SqlCommand("insert into 数据库表名(字段名) values ('"+value+"')");
cmd.ExecuteNonQuery();
conn.Close();
}
protected void Button1_Click(object sender, EventArgs e)
{
string value = this.TextBox1.Text;
SqlConnection conn = new SqlConnection("server=.;database=数据库名;uid=你的登录名;pwd=你的登陆密码");
SqlCommand cmd = new SqlCommand("insert into 数据库表名(字段名) values ('"+value+"')");
cmd.ExecuteNonQuery();
conn.Close();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询