本帖最后由 ya_Pian 于 2011-03-04 10:28:18 编辑

解决方案 »

  1.   


    但是会返回很多模块,innerHtml 不是一次性加载么
      

  2.   

    那就后台先写contenttype~在前台再根据contenttype分别用ajax加载咯~
      

  3.   

    延迟加载
    <asp:ScriptManager ID="ScriptManager1" runat="server">
      </asp:ScriptManager>
      <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional">
      <ContentTemplate>
      <asp:Timer ID="Timer1" runat="server" OnTick="Timer1_Tick" Interval="1000">
      </asp:Timer>
      <div runat="server" id="Panel1" visible="false">
      </div>
      </ContentTemplate>
      </asp:UpdatePanel>protected void Timer1_Tick(object sender, EventArgs e)
      {
      this.Panel1.Visible = true;
      }
    延迟