hi everyone
im using routing in my project and i want to show some page like this
www.mysite.com/myname
here "myname" is a parameter and i used below code to rout address
in global.ascx:
void RegisterRoutes(RouteCollection routes)
{
routes.MapPageRoute("blog", "{name}", "~/findarticles.aspx");
}
void Application_Start(object sender, EventArgs e)
{
RegisterRoutes(RouteTable.Routes);
}
so everything is ok but validation requirement components and some jquery plugins dont work correctly.
i've searched about the problem but there are any solutions in the web ;
thank you :)