I have 25 menu items in a web form. I want to show 25 different gridviews
based on menuitem selected on the same page. e.g if i select menuitem1 it
should show Gridview1 and if I select menuitem2 it should show Gridview2 and
so on. This way I have to show 25 Gridviews. How can I do that.
Thanks
Loading
Tejaswini Prashant JPosted May 7, 2009, 3:30 AM
The parameter value will be change as you will click on different item.( for this you can use switch control structure )
for e.g.
FillGrid(parameter)
{
// set the datasource to grid
}
hope this will help you :)