📄 default.aspx
字号:
<!-- #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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -