-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBookSearch.aspx.cs
79 lines (65 loc) · 2.07 KB
/
BookSearch.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
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 BookSearch : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
txtISBNSearch.Focus();
}
}
public void searchBook(object sender, EventArgs e)
{
getBook(txtISBNSearch.Text);
}
public void getBook(String ISBN)
{
SqlDataReader dr = null;
const string storedProcedureName = "Select_Book_By_ISBN";
SqlConnection connection = new SqlConnection(
WebConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString);
SqlCommand command = new SqlCommand(storedProcedureName, connection);
command.CommandType = CommandType.StoredProcedure;
command.Parameters.Add("@ISBN", SqlDbType.VarChar).Value = ISBN;
try
{
connection.Open();
dr = command.ExecuteReader();
DataTable table = new DataTable();
table.Columns.Add("ISBN", typeof(string));
table.Columns.Add("Title", typeof(string));
table.Columns.Add("Publisher", typeof(string));
table.Columns.Add("Description", typeof(string));
while (dr.Read())
{
// Insert Data
table.Rows.Add((String)dr["ISBN"],
(String)dr["Title"],
(String)dr["Publisher"],
(String)dr["Description"]);
}
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();
}
}
}