我正在尝试将表单中的填写信息提交到数据库。我已经为保存按钮完成了下面提到的编码。当我单击保存按钮保存信息时,我收到错误消息。我需要完成它,同样需要这里的极客提供帮助。
数据库中保存按钮数据的代码
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string conn = ConfigurationManager
.ConnectionString("welcome").ConnectionString;
SqlConnection con=new SqlConnection(conn);
SqlCommand cmd = new SqlCommand("Insert into abhishek(pr_name,Add,add2) values(@ah,@Ap,@qe)",con);
cmd.CommandType = CommandType.Text;
cmd.Parameter.Addwithvalue("@ah", TextBox1.Text.Trim());
cmd.Parameter.Addwithvalue("@ap", TextBox2.Text.Trim());
cmd.Parameter.Addwithvalue("@qe", TextBox3.Text.Trim());
con.Open();
cmd.ExecuteNonQuery();
con.Close();
}
}
检查下图中的错误: