是否可以在Controller Method的返回视图中添加特定链接?
例如:
公共ActionResult测试() {返回视图(“http://www.facebook.com”)
}
答案 0 :(得分:3)
当然,如果你想把它作为普通字符串返回,你可以使用ContentResult
:
public ActionResult test() {
return Content("http://www.facebook.com");
}
或者如果您想重定向到给定的网址,请使用RedirectResult
:
public ActionResult test() {
return Redirect("http://www.facebook.com");
}