product.aspx

来自「asp.net技术内幕的书配源码」· ASPX 代码 · 共 44 行

ASPX
44
字号
<!-- #include virtual="/aspnetstore/includes/header.aspx" -->

<Script runat="Server">
Sub Page_Load
  Dim intProductID As Integer
  Dim strProductTemplate As String
  Dim objProductTemplate As ProductTemplate

  intProductID = Context.Items( "ProductID" )
  strProductTemplate = CachedData.GetProductTemplate( intProductID )
  strProductTemplate = String.Format( "/aspnetstore/ProductTemplates/{0}.ascx", strProductTemplate )
  objProductTemplate = LoadControl( strProductTemplate )
  plhProductTemplate.Controls.Add( objProductTemplate )  
End Sub
</Script>

<html>
<head>
<link href="/aspnetstore/Styles/Store.css" type="text/css" rel="stylesheet" />
<title><%=Context.Items( "ProductName" )%></title>
</head>
<body bgcolor="lightblue">
<a href="Default.aspx"><img src="banner.gif" border="1"></a>
<form runat="Server">

<myControls:Tabs
  Runat="Server" />
<table width="800" height="100%" cellpadding="10" 
  cellspacing="0" border="0">
<tr>
  <td valign="top" bgcolor="lightyellow">
  <myControls:ShoppingCart
    Runat="Server" />
  </td>
  <td width="100%" valign="top" bgcolor="white">
  <asp:PlaceHolder
    id="plhProductTemplate"
    Runat="Server" />
  </td>
</tr>
</table>

</form>
<!-- #include virtual="/aspnetstore/includes/footer.aspx" -->

⌨️ 快捷键说明

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