0
是否可以在控制器方法的返回視圖中添加特定的鏈接?是否有可能使用特定的URL地址MVC3查看?
例如:
公衆的ActionResult測試(){
返回查看( 「http://www.facebook.com」)
}
是否可以在控制器方法的返回視圖中添加特定的鏈接?是否有可能使用特定的URL地址MVC3查看?
例如:
公衆的ActionResult測試(){
返回查看( 「http://www.facebook.com」)
}
當然,如果你想要將其作爲簡單字符串返回,您可以使用ContentResult
:
public ActionResult test() {
return Content("http://www.facebook.com");
}
或者如果你想重定向到給定的網址使用RedirectResult
:
public ActionResult test() {
return Redirect("http://www.facebook.com");
}