I need to implement hash value i.e the Url should look like this:
/home/index/#create
For this have added a route:
routes.MapRoute(
    "Default",    // Route name
    "{controller}/{action}/#{detail}",    // URL with parameters
    new { controller = "Login", action = "LogIn",  detail  =""}  // Parameter defaults
);
On accessing /home/index/#create, it is redirecting me to the default route.
How can this be done?