Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Hello everyone,

I am creating a project in which i save menu names to database and in global.asax file, I am retriving those menu names and bind them to Home.aspx page via URL Routing.

The problem I'm facing is Menu binds properly but When I load the page and click any menu item it will give me error Resource not found.

Can any one help me in dynamic URL routing via database.

Here is the code:
Global.asax
C#
void RegisterRoutes(RouteCollection routes)
        {
            foreach (CMSPages item in CP.GetSiteRoutes())
            {
                if (item.ToString()=="home")
                {
                     routes.MapPageRoute(item.RouteName, "", "~/Home.aspx");
                }
                else
                {
                    routes.MapPageRoute(item.RouteName, item.RouteURL, "~/Home.aspx");
                }

            }

        }


Menu Binding in Master Page.

C#
foreach (CMSPages cpg in cp.GetSiteRoutes())
       {
           string[] pName = cpg.RouteURL.Split('/');
           HyperLink hyp = new HyperLink();
           hyp.Text = cpg.RouteName;
           hyp.NavigateUrl = cpg.RouteName+"/"+pName[0];

           pnlNav.Controls.Add(hyp);
       }
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900