AllInfo.aspx
上传用户:tjxpgg
上传日期:2017-05-14
资源大小:2244k
文件大小:2k
源码类别:

SilverLight

开发平台:

ASP/ASPX

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="AllInfo.aspx.cs" Inherits="AllInfo" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" >
  4. <head runat="server">
  5.     <title>书本详细信息</title>
  6.    
  7.    
  8. </head>
  9. <body>
  10.     <form id="form1" runat="server">
  11.     <div>
  12.         <asp:DetailsView ID="DetailsView1" BorderWidth="0" runat="server" AutoGenerateRows="False" Height="50px"
  13.             Width="721px">
  14.             <Fields>
  15.                 <asp:TemplateField HeaderText="图片">
  16.                     <ItemTemplate>
  17.                         <img src='<%# "../Image/BookCovers/"+Eval("isbn")+".jpg" %>'  style="width: 175px; height: 212px" />
  18.                     </ItemTemplate>
  19.                 </asp:TemplateField>
  20.                 <asp:BoundField DataField="title" HeaderText="书名" />
  21.                 <asp:BoundField DataField="Author" HeaderText="作者" />
  22.                 <asp:BoundField DataField="AurhorDescription" HeaderText="作者简介" />
  23.                 <asp:BoundField DataField="EditorComment" HeaderText="关于本书" />
  24.                 <asp:BoundField DataField="PublishDate" HeaderText="出版日期" />
  25.                 <asp:BoundField DataField="PublishersName" HeaderText="出版社" />
  26.                 <asp:BoundField DataField="CategoriesName" HeaderText="书本类型" />
  27.                 <asp:BoundField DataField="UnitPrice" HeaderText="售价" />
  28.             </Fields>
  29.         </asp:DetailsView>
  30.     
  31.     </div>
  32.     </form>
  33. </body>
  34. </html>