1.返回ascx页面
return PartialView();
2.返回文本
return Content("这是一段文本");
3.返回Json
4.输出JS文件
return JavaScript("var x=0;");
5.页面跳转
跳转到Url:return Redirect("http://www.baidu.com");
跳转到Action:return RedirectToAction("Index","Eice");
跳转到Routing规则:return RedirectToRoute("Default",new { controller = "Home", action = "Index" });
6.显示文件
return File("/Content/site.css", "text/css"//文件类型);
时间: 2024-11-08 23:51:11