ASP.NET平台上用c#写的web程序 用INSERT插入SQL数据库问题
我在ASP.NET平台上用c#写的web程序,想用insert语句把一个变量输入数据库(sql2000),但老出错,出错信息为“在此上下文中不允许使用'nn1'。此处只允...
我在ASP.NET平台上用c#写的web程序,想用insert语句把一个变量输入数据库(sql2000),但老出错,出错信息为“在此上下文中不允许使用 'nn1'。此处只允许使用常量、表达式或变量。不允许使用列名。”
请问怎么样才能把textbox中的内容输入进数据库?
private void Page_Load(object sender, System.EventArgs e)
{
// 在此处放置用户代码以初始化页面
if(!this.IsPostBack)
{string connString="server=SSB;uid=sa;pwd=;database=test";
SqlConnection conn=new SqlConnection(connString);
conn.Open();
string n1="13333";
this.TextBox1.Text=n1;
string nn1=TextBox1.Text.Trim();
SqlCommand cmd =conn.CreateCommand();
cmd.CommandText ="INSERT INTO test(name) VALUES (nn1)";
cmd.ExecuteNonQuery();
conn.Close();
} 展开
请问怎么样才能把textbox中的内容输入进数据库?
private void Page_Load(object sender, System.EventArgs e)
{
// 在此处放置用户代码以初始化页面
if(!this.IsPostBack)
{string connString="server=SSB;uid=sa;pwd=;database=test";
SqlConnection conn=new SqlConnection(connString);
conn.Open();
string n1="13333";
this.TextBox1.Text=n1;
string nn1=TextBox1.Text.Trim();
SqlCommand cmd =conn.CreateCommand();
cmd.CommandText ="INSERT INTO test(name) VALUES (nn1)";
cmd.ExecuteNonQuery();
conn.Close();
} 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询