How to handle special character in url while using url routing in asp.net 4.0?
special character like ( & , .)
It shows error as bad request or dangerous character in url.
How to handle?
suppose i have url routing in Global.asax file
protected void Application_Start(object sender, EventArgs e)
{
CustomRouteTable(RouteTable.Routes);
}
void CustomRouteTable(RouteCollection routes)
{
routes.MapPageRoute("Product", "Product/{pId}/{ProductName}", "~/Product/ProductDetail.aspx");
}
suppose productName is Phone&Cordless or Phone:Cordless then i get error.
How to handle?