admin_book_particular.aspx
来自「《ASP.NET程序设计实用教程》源代码,这本书非常使用,有次源码更是锦上添花,」· ASPX 代码 · 共 52 行
ASPX
52 行
<%@ Page Inherits="admin_book_particular" Src="admin_book_particular.aspx.cs"%>
<html>
<head>
<link href="../style.css" type="text/css" rel="stylesheet">
</head>
<body >
<h3 align="center">详细信息</h3>
<form runat="server">
<asp:Repeater id="myRepeater" runat="server">
<ItemTemplate>
<table width="100%" border="0" cellspacing="1" cellpadding="0" bgcolor="#0099FF" align="center" class="text" height="74">
<tr>
<td height="70">
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor="#FFFFFF" class="text">
<tr>
<td align="center" width="20%">
<img src="../showimage.aspx?BookId=<%# Container.DataItem("BookId") %>" width='67' height='87'>
</td>
<td align="left" >
名称:<%# Container.DataItem("BookName") %>
<br>作者:<%# Container.DataItem("BookAuthor") %>
<br>价格:<%# Container.DataItem("BookPrice") %>元
</td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor="#FFFFFF" class="text">
<tr>
<td align="left" valign="top">
<hr>
<b>内容简介:</b>
<p><%# nsShop.ConvertString.HTMLEncode(Container.DataItem("BookIntro")) %>
</td>
</tr>
<tr>
<td align="left" valign="top">
<hr>
<b>目录:</b>
<p><%# nsShop.ConvertString.HTMLEncode(Container.DataItem("BookIndex")) %>
</td>
</tr>
</table>
</td>
</tr>
</table>
</ItemTemplate>
</asp:Repeater>
</form>
<center><a href="JavaScript:close();">关闭窗口</a></center>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?