I created a menu which changes as per the role logged in. So, this is created in the master page. So, I would like to use this same menu once logged in on every asp page. Since, I’m not much into asp(VB especially), the idea I have is to create a menu in a asp page and include it in all the other pages. But I just like to know if there is another way i can handle this like using the menu in the master page to be used on classic asp pages..can u help me out?
Share
I’ve worked on a few sites that integrated classic ASP pages with ASP.NET.
One option is to put the menu in a master page, and create an ASPX page to load your classic ASP pages using Server.Execute. That way, the menu and the site layout would be in ASP.NET, and your content pages would be classic ASP.
Using this approach, you would obviously have to remove all formatting from your ASP pages so ASP.NET can handle the layout. Your ASP pages would be purely content – kind of like master pages and content pages.