单击 UpdatePanel 内的 GridView 页面时触发 Page_Load 是否正常?

发布于 2024-12-02 11:10:53 字数 816 浏览 0 评论 0原文

我的 aspx 页面中有此代码:

<form id="form2" runat="server">
  <asp:ScriptManager ID="ItemsScriptManager" runat="server" EnablePartialRendering="true" />
  <asp:Button runat="server" ID="SearchButton" OnClick="ItemsSearch" Text="Search" />
  <asp:UpdatePanel runat="server" ID="ItemsUpdatePanel">
    <ContentTemplate>
      <asp:ObjectDataSource runat="server" ID="ItemsDS"
        TypeName="TemplateGridViewODSPagingSorting.ItemDAO" SelectMethod="GetItems" />
      <asp:GridView runat="server" ID="ItemsGridView" DataSourceID="ItemsDS"
        AllowPaging="true" AllowSorting="true" PageSize="4">
      </asp:GridView>
    </ContentTemplate>
  </asp:UpdatePanel>
</form>

通过按 GridView 的另一个页面,触发 Page_Load,这是部分回发的正常行为吗?

I have this code in my aspx page:

<form id="form2" runat="server">
  <asp:ScriptManager ID="ItemsScriptManager" runat="server" EnablePartialRendering="true" />
  <asp:Button runat="server" ID="SearchButton" OnClick="ItemsSearch" Text="Search" />
  <asp:UpdatePanel runat="server" ID="ItemsUpdatePanel">
    <ContentTemplate>
      <asp:ObjectDataSource runat="server" ID="ItemsDS"
        TypeName="TemplateGridViewODSPagingSorting.ItemDAO" SelectMethod="GetItems" />
      <asp:GridView runat="server" ID="ItemsGridView" DataSourceID="ItemsDS"
        AllowPaging="true" AllowSorting="true" PageSize="4">
      </asp:GridView>
    </ContentTemplate>
  </asp:UpdatePanel>
</form>

By pressing on another page of the GridView the Page_Load is triggered, is this normal behavior for a partial postback?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

潜移默化 2024-12-09 11:10:53

使用 UpdatePanel 进行部分呈现不会更改或影响 ASP.NET 中的整个页面生命周期。

这是一个小技巧,用于仅重新渲染浏览器中页面的某个区域(UpdatePanel),但其他任何区域都不会发生变化,所以是的,看到 Page_Load 和所有其他事件照常触发是正常的;它必须是这样的,否则就行不通:)

Partial rendering using UpdatePanel does not change or affect the whole Page life cycle in ASP.NET.

it's a small trick used to re-render only a certain region of the page in the browser (the UpdatePanel) but nothing else change, so yes, it's normal to see Page_Load and all other events to be triggered as usual; it has to be like that or it would not work :)

挥剑断情 2024-12-09 11:10:53

是的,在更新面板更新期间,每次异步回发到服务器时都会调用 page_load,为了克服这个问题,您可以使用 jquery ajax。

Yes, the during update panel update, the page_load will be called with every asynchronous postback to the server, to overcome this, you can use jquery ajax.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文