|
|
|
Object reference not set to an instance of an object. |
|
|
|
|
|
|
|
ลองเปลี่ยนเป็น Java แทนก็ได้ครับ
Code (C#)
string script = "alert(\"Alert!\");";
ScriptManager.RegisterStartupScript(this, GetType(),
"ServerControlScript", script, true);
|
ประวัติการแก้ไข 2016-06-28 12:01:22
|
|
|
|
Date :
2016-06-28 11:59:59 |
By :
taotechnocom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ดูเหมือนว่า มันไม่ได้อยู่ในส่วนของ Exception หรือเปล่าครับ
|
|
|
|
|
Date :
2016-06-28 16:32:55 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จากนั้นพอมา recovery password
ตรง if else มันเข้าแต่else อะค่ะ
ทั้งๆที่ username และ email ถูก เหมือนในรูแด้านล่าง
แบบนี้ต้องแก้ไขอย่างไรค่ะ
Code (C#)
public string RecoveryPassword(string UserName, string UserEmail)
{
DataTable Dt = new DataTable();
string PasswordSring = string.Empty;
base.CommandString = "Select [Password] From [User] Where [Username]=@UserName and [Email]=@UserEmail;";
base.AddParameter("@UserName", SqlDbType.NVarChar, UserName);
base.AddParameter("@UserEmail", SqlDbType.NVarChar, UserEmail);
Dt = base.ExecuteQuery();
if (Dt.Rows.Count > 0)
{
PasswordSring = Dt.Rows[0]["Password"].ToString();
}
else
{
PasswordSring = "Not found.";
}
return PasswordSring;
}
|
|
|
|
|
Date :
2016-06-28 16:52:24 |
By :
bewmoncher |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|