本文介绍了为什么我不能说出一个MVC .NET控制器使sesion?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
这是pretty明确的,但我会解释
This is pretty explicit but i will explain
我加入以下控制器siteblahblah /使sesion / INICIO /和它说我的资源不存在!
I am adding the following controller siteblahblah/sesion/inicio/ and it says my resource don't exist!
所以我用这样的映射路径和它的工作了,但为什么?使sesion名控制器会出问题?哈哈 。我在一个交流中心的方式混淆的MVC框架?哈哈
so I used a mapped route like this and it worked out, but why? sesion name controller gives problems? haha . am i confusing mvc framework in a extrange way? haha
routes.MapRoute(
name: "sesion" ,
url: "Sesion/{action}/{id}" ,
defaults: new { controller = "Sesion" , action = "Inicio" , id = UrlParameter.Optional }
);
编辑:更新
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace MyMVCapp.Controllers
{
public class SesionController : Controller
{
//
// GET: /sesion/
public ActionResult Inicio()
{
return View();
}
}
}
这是没有错别字的方式!使sesion是会议的西班牙语单词,所以我不想英文名称会话我的使sesion我的西班牙语用户。
By the way there's no typos! sesion is the spanish word for session so i don't want to name session in english for my "sesion" for my spanish users.
推荐答案
您可以使用这样,
string actionName = this.ControllerContext.RouteData.Values["action"].ToString();
string controllerName = this.ControllerContext.RouteData.Values["controller"].ToString();
这篇关于为什么我不能说出一个MVC .NET控制器使sesion?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!