I have a page that has a around 30 links divided among 6 groups.
Boat
a
b
c
Horses
d
e
... etc
When the user clicks the link the page will display a series of controls (dropdown, htmltable, chart) in a layout specific only to the link that was clicked.
I have a few ideas:
- Create separate aspx pages for each link that share the same master page (about 30 aspx pages). Advantage: design/layout is easy. Disadvantage: 30 aspx pages
- Determine if any links use the the same layout and create a common page with place holder controls
- Dynamically load controls/css etc onto the page.
So a few questions:
- Are any of these good approaches?
- What are some alternative approaches?
Thanks