2011-07-25 109 views

回答

0

您可以從下面的方法解決

  1. 彈出的使用iframe版本應用任何一個。
  2. Ajax:使用ajax更改頁面。
3

有很多方法可以解決您的問題,但最快/最簡單的方法是將您的DataGrid簡單包裝在UpdatePanel (MSDN)的內部。

UpdatePanel會給人一種AJAXified DataGrid的印象,它可以用最少的代碼來實現。

在您的ASPX頁面將類似於下面的內容代碼:

<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="true" /> 
<div id="myPopUp"> 
    <asp:UpdatePanel ID="UpdatePanel" runat="server" UpdateMode="Conditional"> 
     <ContentTemplate> 
      //Insert DataGrid here 
     </ContentTemplate> 
</asp:UpdatePanel> 

在這裏看到更多的細節:Introduction to the UpdatePanel Control

0

使用AJAX [更新面板]它會幫助你不再加載頁面,否則把你的數據網格用戶控制在一個頁面內,並加載它的頁面將永遠不會關閉,除非你關閉它:)

相關問題