|
|
|
Web (ASP.NET), C# ทำ Hyperlink ออกจากระบบ อย่างไรหรอครับ |
|
|
|
|
|
|
|
มันก็ขึ้นว่า ตอนเข้าระบบ ออกแบบไว้อย่างไร
|
|
|
|
|
Date :
2013-06-09 22:25:17 |
By :
watcharop |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แบบนี้ครับ
Code (C#)
protected void Button2_Click(object sender, EventArgs e)
{
String strConnString;
strConnString = "Server=localhost;UID=sa;PASSWORD=12345;database=mydatabase";
objConn = new System.Data.SqlClient.SqlConnection(strConnString);
objConn.Open();
String strSQL;
strSQL = " SELECT * FROM Register WHERE UserName = '" + this.txtUsername.Text + "' AND [Password] = '" + this.txtPass.Text + "' ";
dtAdapter = new System.Data.SqlClient.SqlDataAdapter(strSQL, objConn);
dtAdapter.Fill(dt);
if (dt.Rows.Count > 0)
{
Session["strFullName"] = dt.Rows[0]["FullName"].ToString();
Session["strUser"] = this.txtUsername.Text;
if (dt.Rows[0]["Status"].ToString() == "ADMIN")
{
Response.Redirect("listmember.aspx");
}
else
{
Response.Redirect("CalendarSchedule.aspx");
}
}
else
{
this.lblStatus.Visible = true;
this.lblStatus.Text = "กรุณาตรวจสอบ Username&Password!!";
}
dtAdapter = null;
objConn.Close();
objConn = null;
}
|
|
|
|
|
Date :
2013-06-10 18:16:51 |
By :
Kaen17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Clear Session ครับ
Code (C#)
Session.Abandon();
Response.Redirect("Login.aspx");
|
|
|
|
|
Date :
2013-06-10 20:22:32 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าผมทำเป็น hyperlink ใน master page จะต้องเหมือนกันไหมครับ หรือต่างกันอย่างไรครับ?
|
|
|
|
|
Date :
2013-06-12 21:49:58 |
By :
Kaen17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก็ไม่น่าจะต่างกันครับ
|
|
|
|
|
Date :
2013-06-13 06:14:33 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|