I have apply paging in GridView which is in UpdatePanel.When I move forward to the next result set full Postback occur on my Page.Do i need to do some modification in web.co
this entry we have to do under syste.web, but it didnt work ou for me. i m using the grid in MOSS. after this entry full post back was done again
I got the solution. I have to put
<xhtmlConformance mode="Transitional"/>
element in web.Config file.
I have a similar issue. Its solved by using The real problem is I have used tdXXXXX = de('_ctl0_CPB_XXXXX');
where de is a function function de(clID)
{
return document.getElementById(clID);
}
Previously the control was rendered correctly as _ctl0_CPB_XXXXX, now it has appeneded an extra 0 ie. _ctl00_CPB_XXXXX. This is used throught the application, and its causing the javaScripts failures. Any solutions.