は、これは私が私のプログラムを実行すると、エラーがこの行に表示されます私のコードASP.NET MVC SQLコマンドエラー
public static bool Login (string iduser, string password)
{
bool auth = false;
string query = string.Format("Select * from [user] where iduser = '{0}' AND password = '{1}' ;", iduser, password);
SqlCommand cmd = new SqlCommand(query, con);
con.Open();
SqlDataReader re = cmd.ExecuteReader();
auth = re.HasRows;
con.Close();
return auth;
}
です。エラーメッセージは次のとおりです。パスワードコロンヌーが無効
本当のパスワードは貼り付けたものですか? StackOverflowに本当のパスワードをブロードキャストしたくないかもしれません。 – kindohm