I have a grid view which is inside Update Panel(UpdatePanel1) and there is also a second grid view which is inside another Update Panel(UpdatePanel2).Update Panel(UpdatePanel1) is triggered by the outside controls and i want to trigger the Update Panel(UpdatePanel2)
on the check change event of Checkbox which is inside Gridview and this GridView is inside Update Panel(UpdatePanel1). I use the following code but this also didn't work
vish02chouha...
Member
303 Points
253 Posts
Set update panel trigger to the control which is inside gridview
Feb 07, 2012 06:59 AM|LINK
I have a grid view which is inside Update Panel(UpdatePanel1) and there is also a second grid view which is inside another Update Panel(UpdatePanel2).Update Panel(UpdatePanel1) is triggered by the outside controls and i want to trigger the Update Panel(UpdatePanel2) on the check change event of Checkbox which is inside Gridview and this GridView is inside Update Panel(UpdatePanel1). I use the following code but this also didn't work
AsyncPostBackTrigger trigger = new AsyncPostBackTrigger(); trigger.EventName = "CheckedChanged"; trigger.ControlID = GVTests.FindControl("CheckBox1").UniqueID; UpdatePanel4.Triggers.Add(trigger);sushanth009
Contributor
6243 Points
1168 Posts
Re: Set update panel trigger to the control which is inside gridview
Feb 15, 2012 10:32 PM|LINK
Check this link.. think this is a duplicate post
http://forums.asp.net/t/1766755.aspx/1