-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.aspx.cs
More file actions
38 lines (35 loc) · 1020 Bytes
/
default.aspx.cs
File metadata and controls
38 lines (35 loc) · 1020 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.Security;
using System.Data;
using System.Data.SqlClient;
public partial class index : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
SetFocus(txtusername);
}
protected void btnLogin_Click(object sender, EventArgs e)
{
DataTable results = UserDB.CheckCredentials(txtusername.Text, txtpassword.Text);
//If only row is returned
if (results.Rows.Count == 1)
{
//If usertype value is admin
if (results.Rows[0][0].ToString().ToLower() == "admin")
{
//Create session variables with username and role
Session["username"] = txtusername.Text;
Session["admin"] = true;
}
//Authenticate and redirect
FormsAuthentication.RedirectFromLoginPage(txtusername.Text, false);
}
//User's credentials were invalid
lblInvalidLogin.Visible = true;
}
}