default.aspx

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

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

<html>
<head>
<link href="~/Styles/Store.css" type="text/css" rel="stylesheet" />
<title>ASP.NET Unleashed Sample Store</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">

  <div class="welcomeBox">
  Welcome to the ASP.NET Unleashed Sample Store!
  <br>
  This Web site illustrates many advanced features of ASP.NET
  such as:

  <ul>
     <li> <b>Dynamically Loaded User Controls</b> - Different products in this store can
      be displayed with completely different layouts. This is possible through the use
      of user controls that act as product templates.
     <p>
     <li> <b>A Database-driven Shopping Cart</b> - The shopping cart that you see on the left uses
      an ADO.NET DataSet to retrieve and update its contents from a database table. The shopping
      cart is also persistent. If you add items to the shopping cart and return weeks later, your
      items will still be there.
     <p>
     <li> <b>Complex Interaction Betwen ASP.NET Objects</b> - This Web site illustrates how
     you can easily pass information back and forth between components, modules, user controls, and
     ASP.NET pages.       
  </ul>
  Click the category tabs above to explore the store.

  </div>



  </td>
</tr>
</table>

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

⌨️ 快捷键说明

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