我创建了一个 if else 语句来检查数据库中是否存在数据库,但 ASP 不检查它?
我想我做错了。
这是我的代码...
SqlCommand check = new SqlCommand("SELECT Count(*) FROM [Users] WHERE Username='" + @username + "'", Connect);
int exist = check.ExecuteNonQuery();
if (exist > 0)
{
txtuser.Text = "User already exists";
} else
// Insert the non-existing data to database