4
使用“ RedirectToAction”从控制器重定向到哈希
您好我想从Mvc控制器返回锚点 控制器名称= DefaultController; public ActionResult MyAction(int id) { return RedirectToAction("Index", "region") } 因此,指向索引的网址是 http://localhost/Default/#region 以便 <a href=#region>the content should be focus here</a> 我不是问您是否可以这样做:如何向我的URL添加定位标记?