Hallo, ich möchte einen Anker von Mvc Controller zurückgeben
Controller-Name = DefaultController;
public ActionResult MyAction(int id)
{
return RedirectToAction("Index", "region")
}
Damit ist die URL, wenn an den Index gerichtet,
http://localhost/Default/#region
Damit
<a href=#region>the content should be focus here</a>
Ich frage nicht, ob Sie das so machen können: Wie kann ich meiner URL ein Ankertag hinzufügen?