hi,
My aplication has one master page and several child page. i have used more rad controls in my application and also used rad ajax manager for the ajax. but my application is very slow.
I have used one RadTab with 4 tabs, and each tab has lot of rad controls. i have wriiten code for the ajxax in pag_load()
like this
My aplication has one master page and several child page. i have used more rad controls in my application and also used rad ajax manager for the ajax. but my application is very slow.
I have used one RadTab with 4 tabs, and each tab has lot of rad controls. i have wriiten code for the ajxax in pag_load()
like this
RadAjaxManager AjaxManager = (RadAjaxManager)Master.FindControl("MasterRadManager");
ImageButton
ImgBtnSave = (ImageButton)Master.FindControl("ImgBtnSave");
AjaxManager.AjaxSettings.AddAjaxSetting(ImgBtnSave, pnlSender, DefaultLoadingPanel);
then i have used four buttons in my master page, which is fire an event in content pages. the content page load event has the code as mentioned above.
please let me knwo what is wrong and the solution for this.