Posted on: 8/7/2014 6:21:19 AM | Views : 444

Hi,
I have a aspx page which has 4-5 tabs, each of which is a ascx control file. All are visible=false initially.
Onclick of one of the tab, a grid is loaded.  I have put postback condition to load this grid..
Problem is I need to load the grid whenever this tab is clicked, currently it's happening only on first page load.
I tried checking visible property of ascx, but onlick of that tab, visible is still not true untill that control is loaded. I want to know when is control's visible property set (in which event etc.)?.
 
I used below code for checking visible property, and onclick of tab in page load i check if (visible) = = ture, but it doesnt work.
Go to the complete details ...