ASP 用GridView控件连接SQL Server数据库(4)
来源:未知 责任编辑:责任编辑 发表时间:2013-12-01 14:19 点击:次
}
else
{
SqlConnection con = new SqlConnection(ConfigurationManager.
ConnectionStrings["connection"].ConnectionString);
string update = "update news set 新闻类别='" + TextBox2.Text + "',
新闻题目='" + TextBox3.Text + "',新闻内容='" +
TextBox4.Text + "' where 新闻编号='" + TextBox1.Text + "'";
SqlCommand cmd = new SqlCommand(update, con);
con.Open();
cmd.ExecuteNonQuery();
con.Close();
GridViewBind();
}
}
摘自 net小伙
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>