asp.netWebServiceを作成しました。ユーザーを検証した後でユーザーの情報を更新したいのですが、ユーザーが入力した新しいユーザー名がまだ存在しない場合は、ユーザーだけが新しいユーザー名を更新できます。それ以外の場合は更新できません。
問題は、ユーザーを正常に検証することですが、存在しない新しいUserNameを指定しようとすると、次のようなエラーが発生します。
Request format is unrecognized for URL unexpectedly ending in '/UpdateUserInfo'.
以下は私のコードです:
public int UpdateUserInfo(string oldusername, string newusername, string mailid, string password)
{
string validateUser = "Select UserName from tbl_UserInfo where UserName='" + newusername + "' ";
con = new MySqlConnection(conString);
con.Open();
MySqlCommand cmd1 = new MySqlCommand(validateUser, con);
string User = cmd1.ExecuteScalar().ToString();
con.Close();
if (User == newusername)
{
return 0;
}
else
{
string updateUser = "Update tbl_UserInfo SET UserName='" + newusername + "',Password='" + password + "',Email_ID='" + mailid + "' where UserName='" + oldusername + "' ";
con = new MySqlConnection(conString);
con.Open();
MySqlCommand cmd = new MySqlCommand(updateUser, con);
int success = cmd.ExecuteNonQuery();
con.Close();
if (success > 0)
{
return success;
}
else
return 0;
}
}
注:結果を;として表示します。
IF my UserName is A and when i update that UserName with same name
i.e A than it should not be updated but when i give another name as B
than it should be updated by B i.e now UserName A becomes the B
何が問題になる可能性がありますか?
解決策を教えてください。
ありがとう..