AllInfo.aspx
资源名称:SunShine.rar [点击查看]
上传用户:tjxpgg
上传日期:2017-05-14
资源大小:2244k
文件大小:2k
源码类别:
SilverLight
开发平台:
ASP/ASPX
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="AllInfo.aspx.cs" Inherits="AllInfo" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" >
- <head runat="server">
- <title>书本详细信息</title>
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- <asp:DetailsView ID="DetailsView1" BorderWidth="0" runat="server" AutoGenerateRows="False" Height="50px"
- Width="721px">
- <Fields>
- <asp:TemplateField HeaderText="图片">
- <ItemTemplate>
- <img src='<%# "../Image/BookCovers/"+Eval("isbn")+".jpg" %>' style="width: 175px; height: 212px" />
- </ItemTemplate>
- </asp:TemplateField>
- <asp:BoundField DataField="title" HeaderText="书名" />
- <asp:BoundField DataField="Author" HeaderText="作者" />
- <asp:BoundField DataField="AurhorDescription" HeaderText="作者简介" />
- <asp:BoundField DataField="EditorComment" HeaderText="关于本书" />
- <asp:BoundField DataField="PublishDate" HeaderText="出版日期" />
- <asp:BoundField DataField="PublishersName" HeaderText="出版社" />
- <asp:BoundField DataField="CategoriesName" HeaderText="书本类型" />
- <asp:BoundField DataField="UnitPrice" HeaderText="售价" />
- </Fields>
- </asp:DetailsView>
- </div>
- </form>
- </body>
- </html>