• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ASP.NETMVC几种简单的Action介绍

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

下面介绍几种简单的Action:

 1  //默认Action
2 public ActionResult Index()
3 {
4 return View();
5 }
6 //传递参数Action
7 public ActionResult ShowText(string id)
8 {
9 this.ViewData["Text"] = id;
10 return View();
11 }
12 //跳转指定页Action
13 public ActionResult Tomicrosoft()
14 {
15
16 return this.Redirect("http://www.microsoft.com");
17 }
18 //跳转到指定Action的Action
19 public ActionResult ToIndex()
20 {
21 // return this.RedirectToAction("Index");
22 return this.RedirectToAction("Index","ActionDemo");
23 }
24 //空的ActionResult
25 public ActionResult empty()
26 {
27 return new EmptyResult();
28 }
29 protected override void HandleUnknownAction(string actionName)
30 {
31 this.Response.Redirect("~/ActionDemo/Index");
32 }

  第一个默认的Action,就不多说了,剩下的都有注释,注意下HandleUnknownAction是UrlRoute未找到对应的Action后就会执行此Action。

  


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap