⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 itemdetails.aspx

📁 ASP.net网站开发四“酷”全书:新闻、论坛、电子商城、博客_源码
💻 ASPX
字号:
<%@ Register TagPrefix="Controls" Namespace="BookShop.Web.Controls" Assembly="BookShop.Web" %>
<%@ Page Language="c#" CodeBehind="ItemDetails.aspx.cs" Inherits="BookShop.Web.ItemDetails" AutoEventWireup="false" enableSessionState="false" ContentType="text/html" ResponseEncoding="gb2312"%>
<%@ Register TagPrefix="BooksControl" TagName="NavBar" Src="Controls/NavBar.ascx" %>
<HTML>
	<HEAD>
		<title>Item Details</title>
		<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
		<link rel="stylesheet" href="Styles.css">
	</HEAD>
	<body>
		<BooksControl:NavBar id="header" runat="server" />
		<blockquote>
			<asp:label id="lblSearchResults" runat="server" />
			<p></p>
			<table cellpadding="0" cellspacing="0">
				<tr valign="top">
					<td class="desc" width="130"><asp:label id="lblDescription" runat="server" /></td>
					<td>
						<span class="title">
							<asp:label id="lblName" runat="server" />
							<asp:label id="lblProductName" runat="server" />
						</span>
						<p>
							<table cellpadding="1" cellspacing="0">
								<tr>
									<td class="label">单价:</td>
									<td><asp:label id="lblPrice" runat="server" /></td>
								</tr>
								<tr>
									<td class="label">数量:</td>
									<td><asp:label id="lblQty" runat="server" /></td>
								</tr>
							</table>
						<p><a href='ShoppingCart.aspx?itemId=<%= Request["itemId"] %>'><img src="Images/buttonAdd.gif" alt="Add to Cart" border="0"></a></p>
					</td>
				</tr>
			</table>
		</blockquote>
	</body>
</HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -