default.aspx
资源名称:SHOPASP.rar [点击查看]
上传用户:xiecaij
上传日期:2015-02-08
资源大小:2016k
文件大小:2k
源码类别:
百货/超市行业
开发平台:
ASP/ASPX
- <%@ Register TagPrefix="eshop" TagName="HeaderMenu" Src="UserControl/HeaderMenu.ascx" %>
- <%@ Register TagPrefix="eshop" TagName="CategoryList" Src="UserControl/CategoryList.ascx" %>
- <%@ Register TagPrefix="eshop" TagName="PopularProducts" Src="UserControl/PopularProduct.ascx" %>
- <%@ Register TagPrefix="eshop" TagName="NewProducts" Src="UserControl/NewProducts.ascx" %>
- <%@ Page language="c#" Codebehind="default.aspx.cs" AutoEventWireup="false" Inherits="eshop._default" %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
- <HTML>
- <HEAD>
- <title>EShop</title>
- <LINK href="Styles.css" type="text/css" rel="stylesheet">
- </HEAD>
- <body>
- <table cellSpacing="0" cellPadding="0" width="100%" border="0">
- <tr>
- <td colSpan="2"><eshop:headermenu id="Header" runat="server"></eshop:headermenu></td>
- </tr>
- <tr>
- <td valign="top" width="145">
- <eshop:CategoryList id="CategoryMenu" runat="server" />
- <img height="1" src="images/space.gif" width="145">
- </td>
- <td align="left" valign="top" width="700">
- <table align="left" width="100%" border="0">
- <tr valign="top">
- <td align="left">
- <br>
- <table width="100%" align="right">
- <tr>
- <td align="left">
- <eshop:NewProducts id="NewProducts" runat="server" />
- </td>
- <td align="left">
- <eshop:PopularProducts id="PopularProducts" runat="server" />
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </body>
- </HTML>