default.aspx
上传用户:xiecaij
上传日期:2015-02-08
资源大小:2016k
文件大小:2k
源码类别:

百货/超市行业

开发平台:

ASP/ASPX

  1. <%@ Register TagPrefix="eshop" TagName="HeaderMenu" Src="UserControl/HeaderMenu.ascx" %>
  2. <%@ Register TagPrefix="eshop" TagName="CategoryList" Src="UserControl/CategoryList.ascx" %>
  3. <%@ Register TagPrefix="eshop" TagName="PopularProducts" Src="UserControl/PopularProduct.ascx" %>
  4. <%@ Register TagPrefix="eshop" TagName="NewProducts" Src="UserControl/NewProducts.ascx" %>
  5. <%@ Page language="c#" Codebehind="default.aspx.cs" AutoEventWireup="false" Inherits="eshop._default" %>
  6. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
  7. <HTML>
  8. <HEAD>
  9. <title>EShop</title>
  10. <LINK href="Styles.css" type="text/css" rel="stylesheet">
  11. </HEAD>
  12. <body>
  13. <table cellSpacing="0" cellPadding="0" width="100%" border="0">
  14. <tr>
  15. <td colSpan="2"><eshop:headermenu id="Header" runat="server"></eshop:headermenu></td>
  16. </tr>
  17. <tr>
  18. <td valign="top" width="145">
  19. <eshop:CategoryList id="CategoryMenu" runat="server" />
  20. <img height="1" src="images/space.gif" width="145">
  21. </td>
  22. <td align="left" valign="top" width="700">
  23. <table align="left" width="100%" border="0">
  24. <tr valign="top">
  25. <td align="left">
  26. <br>
  27. <table width="100%" align="right">
  28. <tr>
  29. <td align="left">
  30. <eshop:NewProducts id="NewProducts" runat="server" />
  31. </td>
  32. <td align="left">
  33. <eshop:PopularProducts id="PopularProducts" runat="server" />
  34. </td>
  35. </tr>
  36. </table>
  37. </td>
  38. </tr>
  39. </table>
  40. </td>
  41. </tr>
  42. </table>
  43. </body>
  44. </HTML>