﻿<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%@ Register Src="userControl/header.ascx" TagName="header" TagPrefix="uc1" %>
<%@ Register Src="userControl/footer.ascx" TagName="footer" TagPrefix="uc2" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
 <title>
        <%=StringClass.getTitle()%>
    </title>
    <%=StringClass.getKeyWord()%>
    <%=StringClass.getDes()%>
<link href="sheet/layout.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="scripts/jquery.min.js"></script>
<script type="text/javascript" src="scripts/ddsmoothmenu.js"></script>
<script type="text/javascript">
ddsmoothmenu.init({
mainmenuid: "smoothmenu1", //menu DIV id
orientation: 'h', //Horizontal or vertical menu: Set to "h" or "v"
classname: 'ddsmoothmenu', //class added to menu's outer DIV
//customtheme: ["#1c5a80", "#18374a"],
contentsource: "markup" //"markup" or ["container_id", "path_to_menu_file"]
})
</script>
</head>
<body>
<form id="form1" runat="server">
<div id="wrap">  
  <uc1:header ID="Header1" runat="server" />
  <div class="clr"></div>
    <div class="banner"> 
  <div class="banner_about">
  <h2>上海迪繁贸易有限公司</h2>
  是美国Whip.mix(唯美齿)公司，Vaniman公司和德国Hatho(哈托)公司中国总代理，德国EVE公司上海代理。
  <a href="about.aspx">了解更多 >></a>
  </div> 
  <img src="images/banner.jpg" alt="" />
  </div>
  <div class="home_main">
    <div class="home_left">
      <div class="title_home"><span><a href="products.aspx">查看所有品牌</a></span><strong>代理品牌</strong></div>
      <ul class="agrent_brand">
        <li><a href="products.aspx?parentId=1"><img src="images/brand1.jpg" alt="" /></a></li>
        <li><a href="products.aspx?parentId=2"><img src="images/brand2.jpg" alt="" /></a></li>
        <li><a href="products.aspx?parentId=3"><img src="images/brand3.jpg" alt="" /></a></li>
        <li><a href="products.aspx?parentId=5"><img src="images/brand5.jpg" alt="" /></a></li>
        <li><a href="products.aspx?parentId=4"><img src="images/brand4.jpg" alt="" /></a></li>        
        <li><a href="products.aspx?parentId=6"><img src="images/brand6.jpg" alt="" /></a></li>
      </ul>
    </div>
    <div class="home_right">
      <ul class="home_link">
        <h2>相关链接</h2>
        <li><a href="customer.aspx">FAQ</a></li>
        <li><a href="download.aspx">产品资料下载</a></li>
        <li><a href="job_list.aspx">人才招聘</a></li>
        <li><a href="contact.aspx">联系我们</a></li>
      </ul>
      <ul class="home_new">
        <h2>新闻中心</h2>
        <asp:Repeater ID="RepNews" runat="server">
        <ItemTemplate>
        <li>
          <p><%#Convert.ToDateTime(Eval("dateTime").ToString()).ToShortDateString() %></p>
          <a href="news_info.aspx?id=<%#Eval("id") %>&parentId=<%#Eval("cate1") %>"><%#Eval("title") %></a></li>
        </ItemTemplate>
        </asp:Repeater><li>
        <blockquote><a href="news.aspx">更多...</a></blockquote>
      </li>
      </ul>
    </div>
  </div>  
    <uc2:footer ID="Footer1" runat="server" />
</div>
</form>
</body>
</html>

