-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMemberSearch.aspx.cs
83 lines (69 loc) · 2.29 KB
/
MemberSearch.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Web;
using System.Web.Configuration;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class MemberSearch : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
txtMemberIDSearch.Focus();
}
}
public void searchMember(object sender, EventArgs e)
{
getMember(txtMemberIDSearch.Text);
}
public void getMember(String MemberID)
{
SqlDataReader dr = null;
const string storedProcedureName = "Select_Member_By_ID";
SqlConnection connection = new SqlConnection(
WebConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString);
SqlCommand command = new SqlCommand(storedProcedureName, connection);
command.CommandType = CommandType.StoredProcedure;
command.Parameters.Add("@MemberID", SqlDbType.VarChar).Value = MemberID;
try
{
connection.Open();
dr = command.ExecuteReader();
DataTable table = new DataTable();
table.Columns.Add("MemberID", typeof(string));
table.Columns.Add("FirstName", typeof(string));
table.Columns.Add("LastName", typeof(string));
table.Columns.Add("ClassName", typeof(string));
table.Columns.Add("Age", typeof(int));
table.Columns.Add("Gender", typeof(string));
while (dr.Read())
{
// Insert Data
table.Rows.Add((String)dr["MemberID"],
(String)dr["FirstName"],
(String)dr["LastName"],
(String)dr["ClassName"],
(int)dr["Age"],
(String)dr["Gender"]);
}
GridView1.DataSource = table;
GridView1.DataBind();
dr.Close();
dr.Dispose();
command.Cancel();
}
catch (Exception err)
{
Response.Write(err.Message);
Console.Write(err.Message);
}
finally
{
connection.Close();
}
}
}