こんにちはMvcコントローラーからアンカーを返したい
コントローラー名= DefaultController;
public ActionResult MyAction(int id)
{
return RedirectToAction("Index", "region")
}
インデックスに向けられたときのURLが
http://localhost/Default/#region
そのため
<a href=#region>the content should be focus here</a>
次のようにできるかどうかは尋ねていません。URLにアンカータグを追加するにはどうすればよいですか。