简体   繁体   中英

Page is not loading at time in asp.net

In my web page i am using panel then div. panel is loading first and then div tag, but I want two at a time. I tried Ajax update process and java script Loading image but not working.

please help me.

       <div class="container-fluid contentStart" >
            <div class="row-fluid">
                <div data-layout='{"type": "border", "hgap": 3, "vgap": 3}' class="layout     mailVertical">

      <asp:Panel ID="pnlRefDet" runat="server" class="layout mailVertical" >
       ....
       </asp:panel>
              <div class="west" style="background-color:#FAFAFA; width:32%"  runat="server"    id="divMessageInbox">
                 .....
             </div>
       </div>
   </div>
</div>

You can put both in table then it will load at once

<table>
  <tr>
     <td>
          panel goes here
     </td>
  </tr> 
  <tr>
     <td>
          div goes here
     </td>
  </tr> 
</table>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM