I need to implement hash value i.e the Url should look like this:
/home/index/#create
For this have added a route:
As stated there is no way to do this using routing. The only possible solution is to append the # fragment to your url when redirecting in the actions of your controller. Eg.
return Redirect(Url.Action("Index", "Home") + "#create");