开发者

HyperLink problem under Panel within UpdatePanel

开发者 https://www.devze.com 2023-01-05 12:04 出处:网络
The HyperLink under Panel within UpdatePanel is not clickable. When HyperLink is moved from sub panel to UpdatePanel, everything is good. Here is my code -

The HyperLink under Panel within UpdatePanel is not clickable. When HyperLink is moved from sub panel to UpdatePanel, everything is good. Here is my code -

Page:

<asp:UpdatePanel ID="p开发者_如何学Python" runat="server" RenderMode="Inline" UpdateMode="Conditional">
 ...
 <some:UserControl ID="uc" runat="server" />
 ...
</asp:UpdatePanel>

SomeUserControl:

<asp:Panel ID="p" runat="server">
 ...
 <asp:HyperLink ID="hlExportFile" runat="server" />
 ...
</asp:Panel>

Would be glad to hear any solution. Thanks ahead!


You Panel needs an ID.

0

精彩评论

暂无评论...
验证码 换一张
取 消