Sunday, 10 June 2018

Easiest way to remove .aspx from url in asp.net

1.Install Nuget package

 
 
Install-Package Microsoft.AspNet.FriendlyUrls
 
 

2.Files installed by friendly urls in asp .net

 

 

3.Add Global.asax file

 

void Application_Start(object sender, EventArgs e)
{
   RouteConfig.RegisterRoutes(System.Web.Routing.RouteTable.Routes);
}

 

 

 

No comments:

Post a Comment