Ciao, voglio restituire un'ancora da Mvc Controller
Nome controller = DefaultController;
public ActionResult MyAction(int id)
{
return RedirectToAction("Index", "region")
}
In modo che l'URL quando viene indirizzato all'indice sia
http://localhost/Default/#region
Così che
<a href=#region>the content should be focus here</a>
Non ti chiedo se puoi farlo in questo modo: come posso aggiungere un anchor tag al mio URL?