I have an AJAX Control Toolkit TabContainer
in my ASP.NET page. In one of the tabs in the TabContainer
, there is a GridView
. Now, I have an UpdatePanel
for which I want to give trigger as "RowCommand" of GridView
mentioned above. The UpdatePanel
is outside the TabContainer
. But when I give the GridView
id, I am getting the error:
A control with ID 'grvSummary' could not be found for the trigger in UpdatePanel 'updSegment'.
Trigger markup:
<asp:AsyncPostBackTrigger ControlID="grvSummary" EventName="RowCommand" />