Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 Controller Method 的 return View 中添加特定链接?
例如:
公共动作结果测试(){
返回视图(“http://www.facebook.com”)
}
当然,如果您想将其作为纯字符串返回,您可以使用ContentResult:
ContentResult
public ActionResult test() { return Content("http://www.facebook.com"); }
或者,如果您想重定向到给定的 url,请使用RedirectResult:
RedirectResult
public ActionResult test() { return Redirect("http://www.facebook.com"); }