Click here to Skip to main content
15,886,799 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
can an update panel be updated if it has a RegisterPostBackControl in it. I am using a datalist inside it.
In page load i have used this
ScriptManager.GetCurrent(this.Page).RegisterPostBackControl(this.DataList1);
but the problem now is that the updatepanel does not gets updated by the following code
UpdatePanel1.Update();
It was working fine until place placed the datalist as a RegisterPostBackControl.
Posted
Comments
Jignesh Khant 8-Jan-14 0:06am    
Use timer control instead. Place Timer inside the update panel and on timer tick update datalist.

1 solution

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900