在使用Asp.Net MVC ActionLink, RedirectToAction等时,可以通过在链接中添加#
符号来包含片段标识符。片段标识符是URL中用于标识网页中特定部分的标记,它可以让浏览器在加载页面后自动滚动到指定位置。
例如,如果要在使用ActionLink时添加片段标识符,可以这样做:
@Html.ActionLink("Link text", "ActionName", "ControllerName", null, new { fragment = "fragment-id" })
其中,fragment
参数用于指定片段标识符。
如果要在使用RedirectToAction时添加片段标识符,可以这样做:
return RedirectToAction("ActionName", "ControllerName", new { fragment = "fragment-id" });
同样,fragment
参数用于指定片段标识符。
需要注意的是,片段标识符只能在浏览器中生效,如果通过其他客户端访问链接,则片段标识符将被忽略。
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云