Yes, add the Global.ascx file to your project and add the function written by me to it.
public static void UrlRouting(RouteCollection RC, string RoutName, string routeUrl, string Page) { RC.MapPageRoute(RoutName, routeUrl, Page); } after this inside Application_Start event on global.ascx file call that function like UrlRouting(RouteTable.Routes, "index", "Home", "~/index.aspx");
and then call it the route URL ~ / Home "> Home Note: Remember to call ResolveUrl with your URL, otherwise it cannot be called and your images and jquery, js paths should also have ResolveUrl as" / "> otherwise this jquery will not work and images will not be displayed hope this helps
Shayan hafeez
source share