views:

25

answers:

2

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" 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!

A: 

You Panel needs an ID.

matt-dot-net
there are IDs in real code
McWest
There might also be a bug in the real code ;)
matt-dot-net
I dont' think so, because everything is working good, only problem with that link. Also, when link is moved outside from panel wrapper, the problem disappearing
McWest
realy problem is in code, thank you very mutch for help!
McWest
A: 

Problem is found - internal panel was just disabled...

McWest