<%@ Control Language="C#" AutoEventWireup="true" CodeFile="Header.ascx.cs" Inherits="Templates_VCBtemp1_UserControl_Header" %>
<table width="1002" border="0" cellspacing="0" cellpadding="0" class="header" align="center">
  <tr>
    <td style="padding:10px;"><img src="<%=new General.Xmls().GetBasicSetNode("SiteLogo") %>" alt="" /></td>
    <td class="had_right">·<a title="设置本站为浏览器首页" onclick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://<%=HttpContext.Current.Request.Url.Host %>');" href="javascript:;">设为首页</a>
     ·<a href="javascript:window.external.AddFavorite('http://<%=HttpContext.Current.Request.Url.Host %>', '<%=new General.Xmls().GetBasicSetNode("SiteTitle") %>')">收藏本站</a>
     
     </td>
  </tr>
</table>
<table width="1002" border="0" cellspacing="0" cellpadding="0" class="menu" align="center">
  <tr>
    <td>
    <table width="80%" border="0" cellspacing="0" cellpadding="0" align="center">
      <tr>
        <td><a href="Default.aspx" class="cul_tl">首 页</a></td>
        <asp:Repeater ID="Repeater1" runat="server">
        <ItemTemplate>
        <td><a href="<%#GetChannel(Eval("FatherModelID").ToString()) %>?ChannelID=<%#Eval("ChannelID")%>" class="cul_tl"><%#Eval("ChannelName")%></a></td>
        </ItemTemplate>
        </asp:Repeater>
      </tr>
    </table>
    </td>
  </tr>
</table>
<a href="<%#GetChannel(Eval("FatherModelID").ToString()) %>?ChannelID=<%#Eval("ChannelID")%>" class="cul_tl"><%#Eval("ChannelName")%> 这句话中href中的<%#GetChannel(Eval("FatherModelID").ToString()) %>?ChannelID=<%#Eval("ChannelID")%> 在href中打不出来啊  要在外面打再剪切进去,这是为什么? 还有<%#%>那个#是干嘛用的还有那个?是什么意思 求解