-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStaffDetails.aspx.cs
40 lines (35 loc) · 1.01 KB
/
StaffDetails.aspx.cs
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.Data;
using System.Configuration;
namespace ClassManageApp
{
public partial class WebForm12 : System.Web.UI.Page
{
string constr = ConfigurationManager.ConnectionStrings["DBCS"].ConnectionString;
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
StaffDetailsGridGet();
}
}
private void StaffDetailsGridGet()
{
using (SqlConnection con = new SqlConnection(constr))
{
string query = "select * from StaffDetails";
SqlCommand cmd = new SqlCommand(query, con);
con.Open();
StaffDetailsGrid.DataSource = cmd.ExecuteReader();
StaffDetailsGrid.DataBind();
con.Close();
}
}
}
}