public
partial
class
Chapter3_Recipe19 : System.Web.UI.Page
{
protected
void
Page_Load(
object
sender, EventArgs e)
{
if
(!IsPostBack)
{
gvBooks.DataSource = GetBooksInfo();
gvBooks.DataBind();
}
}
private
DataTable GetBooksInfo()
{
DataTable dt =
new
DataTable();
dt.Columns.Add(
"
BookId
"
,
typeof
(
string
));
dt.Columns.Add(
"
Title
"
,
typeof
(
string
));
dt.Columns.Add(
"
Author
"
,
typeof
(
string
));
dt.Columns.Add(
"
Publish
"
,
typeof
(
string
));
dt.Rows.Add(
"
1
"
,
"
持续交付:发布可靠软件的系统方法
"
,
"
(英) 亨布尔 (Humble,J.),(英) 法利 (Farley,D.) 著 乔梁 译
"
,
"
人民邮电出版社
"
);
dt.Rows.Add(
"
2
"
,
"
人件集:人性化的软件开发
"
,
"
(澳) Larry L. Constantine 著 谢超 等 译
"
,
"
机械工业出版社
"
);
dt.Rows.Add(
"
3
"
,
"
一线架构师实践指南
"
,
"
温昱 著
"
,
"
电子工业出版社
"
);
dt.Rows.Add(
"
4
"
,
"
设计模式:可复用面向对象软件的基础
"
,
"
Erich Gamma 等 著
"
,
"
机械工业出版社
"
);
dt.Rows.Add(
"
5
"
,
"
重构:改善既有代码的设计
"
,
"
(美)福勒 著 熊节 译
"
,
"
人民邮电出版社
"
);
return
dt;
}
}