I m developing an web application using ASP.NET with VB.NET as codebehind and SQL SErver 2005. In my application page, i need to implement multiple TABs(15 to 20 count) in a Single Home. Each TAB will contains something around 20 controls where data manipulation(Insert/Update/Delete)
operation will occur within the TABs. Around 400users will be using this application.
How should i handle this situation.
1. Shall i create TABs within the Containers/Panel, and call the controls created using User Controls
2. Or shall i create each TAB as webpage and call it from each tab.
The expectation is it should be fast to use and there should not be any performance issues.
I have one more question. In which case, i need to create the tabs as seperate webpage and call it from respective tabs. I mean, calling ASP.NET page using Ajax during click event of the tab.
15 - 20 tabs with lots of controls is not a good idea in ASP.NEt, lots of controls make page slow....but if it is inveitable, you can go for JQuery to build tabs - http://jqueryui.com/demos/tabs/
And dynamica contorls in this particular scenario gives you overhead of managing controls....
you need to refine your requirement and come up with certain workflow which will separate this particualr page into multiple pages....
currently i m rewriting ms access into asp.net. i need to create and maintain all the 15 tabs in single page only. each tab will contain something around 15 controls at the maximum. In few of the tabs, i m planning to make use of the User controls.
rkaruppiah
Member
4 Points
5 Posts
Creating 15TABS with approximate of 20Controls within eachTABs in ASP.NET Web Page
Mar 22, 2012 11:33 PM|LINK
Hi,
I m developing an web application using ASP.NET with VB.NET as codebehind and SQL SErver 2005. In my application page, i need to implement multiple TABs(15 to 20 count) in a Single Home. Each TAB will contains something around 20 controls where data manipulation(Insert/Update/Delete) operation will occur within the TABs. Around 400users will be using this application.
How should i handle this situation.
1. Shall i create TABs within the Containers/Panel, and call the controls created using User Controls
2. Or shall i create each TAB as webpage and call it from each tab.
The expectation is it should be fast to use and there should not be any performance issues.
Please provide best solution to goahead with.
paritoshmmec
Participant
1555 Points
304 Posts
Re: Creating 15TABS with approximate of 20Controls within eachTABs in ASP.NET Web Page
Mar 23, 2012 07:05 AM|LINK
1. if there is no relation between tabs go for Single page for each tab.
2.if above is not true go for usercontrol.
Please let me know in case more help
Thanks and Regards,
Paritosh
rkaruppiah
Member
4 Points
5 Posts
Re: Creating 15TABS with approximate of 20Controls within eachTABs in ASP.NET Web Page
Mar 24, 2012 04:54 AM|LINK
Hi,
Thanks for your reply.
only few of the tabs are related.
I have one more question. In which case, i need to create the tabs as seperate webpage and call it from respective tabs. I mean, calling ASP.NET page using Ajax during click event of the tab.
ramiramilu
All-Star
95503 Points
14106 Posts
Re: Creating 15TABS with approximate of 20Controls within eachTABs in ASP.NET Web Page
Mar 24, 2012 07:36 AM|LINK
15 - 20 tabs with lots of controls is not a good idea in ASP.NEt, lots of controls make page slow....but if it is inveitable, you can go for JQuery to build tabs - http://jqueryui.com/demos/tabs/
And dynamica contorls in this particular scenario gives you overhead of managing controls....
you need to refine your requirement and come up with certain workflow which will separate this particualr page into multiple pages....
Thanks,
JumpStart
rkaruppiah
Member
4 Points
5 Posts
Re: Creating 15TABS with approximate of 20Controls within eachTABs in ASP.NET Web Page
Mar 25, 2012 02:23 AM|LINK
Hi,
Will it be okay if i create create each TAB specific Controls placed in seperate UserControls and call the UserControl from each TAB?
Or JQuery willl be the best option?
Also Please suggest some links where i can go through how to implement JQuery as i m new to JQuery.
rkaruppiah
Member
4 Points
5 Posts
Re: Creating 15TABS with approximate of 20Controls within eachTABs in ASP.NET Web Page
Mar 27, 2012 02:21 PM|LINK
In what way JQuery helps in resolving the issue
rkaruppiah
Member
4 Points
5 Posts
Re: Creating 15TABS with approximate of 20Controls within eachTABs in ASP.NET Web Page
Mar 27, 2012 04:06 PM|LINK
currently i m rewriting ms access into asp.net. i need to create and maintain all the 15 tabs in single page only. each tab will contain something around 15 controls at the maximum. In few of the tabs, i m planning to make use of the User controls.
please suggest if i m wrong