asp.net网站编程。将输入的TextBox.Text中的值与数据库中的字段比较
发布网友
发布时间:2022-09-06 14:26
我来回答
共3个回答
热心网友
时间:2024-12-03 03:12
我假设你textbox中要输入的是用户名
string UserName1 = TextBox的id.Text.Trim();
SqlConnection conn = new SqlConnection();
conn.ConnectionString =@"server=服务器名;uid=实例名;pwd=密码;database=数据库名";
string sqlString = "select UserName from [要在数据库中查找的那个表名] where UserName='" + UserName1 + "'";
SqlDataAdapter sda = new SqlDataAdapter(sqlString, conn);
DataSet ds = new DataSet();
sda.Fill(ds);
if (ds.Tables[0].Rows.Count == 0)
{
查找不到的语句
}
else
{
找到了的语句
}追问这些代码是在 public partial class _Default : System.Web.UI.Page 下还是 protected void LinkButton1_Click(object sender, EventArgs e) 下?
还有 conn.ConnectionString =@"server=服务器名;uid=实例名;pwd=密码;database=数据库名";----是为了连接数据库吗?我已经弄好数据源控件了
热心网友
时间:2024-12-03 03:13
myValue = textBox.Text
select count(*) from table where column = 'myValue'
如果这个语句返回值 大于 0 表明 textbox.text的值于数据库中字段相同
热心网友
时间:2024-12-03 03:13
取控件VALUE
传控件VALUE SELECT
取返回值(真、假)
显示OR不显示