Hola quiero devolver un ancla de MVC controladorredirigir a un hash del controlador usando "RedirectToAction"
controlador nombre = defaultController;
public ActionResult MyAction(int id)
{
return RedirectToAction("Index", "region")
}
Para que la URL cuando se dirige al índice es
http://localhost/Default/#region
Para que
<a href=#region>the content should be focus here</a>
No estoy pidiendo si puede hacerlo de esta manera: How can I add an anchor tag to my URL?
http://stackoverflow.com/questions/7904835/how-can-i-add-an-anchor-tag-to-my-url – DevDave