RT
<asp:LinkButton   href='hylr.aspx' runat="server">返回首页</asp:LinkButton>
这里的href该怎么写才能让父页面跳转到'hylr.aspx' 
注:后台js跳转我会写,我就想问在前台href怎么直接跳???

解决方案 »

  1.   

    <a href='hylr.aspx' >返回首页</a>
      

  2.   

    在前台<asp:LinkButton   中这样写?????
      

  3.   

    <a href='hylr.aspx' target="top" >返回首页</a>
    你说的子页面是什么意思,用了frameset或iframe了?如果是这样用上面的方法肯定可以。
      

  4.   

    你这样的话 会在新页面中打开 我要当前页面跳转
    我这个页面是tab页中的一个页面
      

  5.   

    <a   href='javascript:void(0)" onclick="window.location='hylr.aspx'" >返回首页</a>
      

  6.   

    window.parent.location.href = "http://www.czmdy.com/about/index.html"

    window.opener.location.href = "http://www.czmdy.com/about/index.html"这两种方式是对父页面进行跳转
      

  7.   

    <a href="hylr.aspx" target="_parent">返回首页</a>