[2005] AJAX and Tab Control
hi all,
I have some questions in my mind regarding AJAX Tab Control.
What I want to do is dynamically loading the Page in when one click on Tab.
If following condition can be fullfilled then i think it's useful to make use of Tab Control
1. If I can fire event of Web Control before the Main Page Load event like Master - Child page.
2. I can't Make use of MultiView as it load each webcontrol on every event.
3. I can't make use of LoadControl Event to load control dynamically as it doesn't support nested UpdatePanel.
If anyone can suggest any third party component then also it's ok..
Thanks in advance :)
Re: [2005] AJAX and Tab Control
Then create a menu that looks like a set of tabs, but have the page postback each time, or load another page. You can then get the events you want.
Re: [2005] AJAX and Tab Control
Thanks for reply
But, I don't think Menu Control can solve the problem i am making module that postback all the page(WebControl) using AJAX call. And I don't find how MenuControl can be useful? Can u plz expain how can i use Menu Control instead of MultiView to call the Only a single View Load Event at a time?
Re: [2005] AJAX and Tab Control
Point #1 for you is:
Quote:
If I can fire event of Web Control before the Main Page Load event like Master - Child page.
You want an event to fire in the web control before the main page's load event. It can't quite work that way. You load your main page, and then make requests to the 'child' pages for content, which can fire events which you handle there itself.
Is that what you want? I'm having trouble understanding your English.