-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefault.aspx.cs
More file actions
40 lines (35 loc) · 1.1 KB
/
Default.aspx.cs
File metadata and controls
40 lines (35 loc) · 1.1 KB
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
39
40
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
using System.Configuration;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (Session["User"] != null)
{
Response.Redirect("~/Default.aspx");
}
}
protected void btnlogin_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["connect"].ToString());
con.Open();
String query = "select count(*) from tbl_login where user_name='"+txtusername.Text+ "' and password_='" + txtpassword.Text + "'";
SqlCommand cmd = new SqlCommand(query,con);
String output = cmd.ExecuteScalar().ToString();
if(output == "1")
{
Session["User"] = txtusername.Text;
Response.Redirect("~/Welcome.aspx");
}
else
{
Response.Write("Your Username and Password is wrong !");
}
}
}