ASP.NET中检验数据库中某个值和textbox中的值一致
作者:互联网
string str0 = "select * from dengji where company='" + TextBox2.Text+"'";
上面的代码中,dengji是我的表名。
要在表中找到一个值等于TextBox2中的值。此时TextBox中输入的为字符串,如果我们输入的为数字,那么就不需要这么麻烦。
string str0 = "select * from dengji where id="+Int64.Parse(TextBox1.Text);
这样就行了。
这是因为我们sql语句中,字符串那边是得加单引号的。
标签:ASP,string,dengji,str0,TextBox2,Text,NET,select,textbox 来源: https://www.cnblogs.com/TomHard/p/14729672.html