我想,如果他們沒有登錄的任何用戶受到限制限制用戶。 想,如果他們試圖通過粘貼他們仍然被重定向到登錄頁面的鏈接訪問任何頁面。訪問任何網頁,而不登錄
LoginPage
protected void Page_Load(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["dbconnection"].ConnectionString);
con.Open();
SqlCommand cmd = new SqlCommand("select * from Employee where UName [email protected] and [email protected]", con);
cmd.Parameters.AddWithValue("@username", UName.Text);
cmd.Parameters.AddWithValue("@password", UPassword.Text);
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataTable dt = new DataTable();
da.Fill(dt);
if (dt.Rows.Count > 0)
{
Response.Redirect("Details.aspx");
}
}
我不想限制每個文件夾分開。 –
所以你可以使用第二個片段(所有頁面都用'')。 –
feeeper
我如何知道用戶已通過身份驗證?沒有會議 –