问题标签 [asp.net-mvc-migration]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
c# - AuthorizeAttribute.AuthorizeCore 方法中的 Session 怎么可能为空?
我有一个自定义属性类,它继承自AuthorizeAttribute
. 有时参数httpContext.Session
为空。这怎么可能?只要我登录/活跃,会话就应该是活跃的,对吗?我没有浏览 20 分钟或更长时间,实际上我只是浏览了 0-2 分钟,有时 Session 属性为空。
自从我们从 MVC 2 (.NET 3.5) 切换到 MVC 4.5 (.Net 4.5) 后,我们就有了这个错误。这可能是问题的原因吗?
我该如何解决这个问题?
c# - Using ExceptionFilterAttribute in upgraded MVC project
Is it possible to use ExceptionFilterAttribute in a project the was created with MVC2 and upgraded to MVC4? It is not a Web API project, and I cannot seem to get the exception to catch using the ExceptionFilterAttribute. Is there any way to make this happen or am I better off just sticking to inheriting from ActionFilterAttribute and implementing IExceptionFilter. This is for an API section within our MVC project
asp.net-mvc - 捆绑工作但从 Asp.Net MVC 3 迁移到 MVC 4 后缩小不起作用
当我从 Asp.Net MVC 3 迁移到 MVC 4时,Asp.Net MVC 4 除了缩小之外一切正常。
问题
我的捆绑工作但缩小不起作用。
捆绑代码
并呈现如下所示的脚本标签:(这是真的,很好!)
例如
如果您看到上面的代码,它会生成捆绑脚本引用,这意味着捆绑工作正常,但是当我点击查看内容时,JS 内容没有被缩小,这意味着缩小不起作用。
有人请让我知道问题出在哪里或应该如何解决?
提前致谢!
asp.net-mvc - MVC DateTime 格式无法解析
最近从 MVC3 升级到 4 后,我遇到了一些日期时间问题。我显示这样的日期属性:
"datetime" 是一个显示模板,如下所示:
在我的 global.asax 文件中,我注册了以下模型绑定器:
看起来像这样:
日期时间在视图中正确显示,但是当提交表单时,日期返回如下:“7/20/2013 12:00:00 AM”并且 DateTimeModelBinder 抛出格式异常:字符串未被识别为有效的日期时间。(在新西兰,月份和日期是相反的)。
为什么它会以这种格式返回?为什么它不能解析它?为什么升级到 MVC 4 时会发生这种情况?我怎样才能让它以 NZ 格式返回?我是否应该在解析时不指定文化,这是以前的 MVC 版本中可能需要的吗?
asp.net-mvc - MVC 5 迁移问题
我已将我的项目从 MVC 4.0 迁移到 MVC 5.1。我已经按照这里提到的所有步骤 http://www.asp.net/mvc/tutorials/mvc-5/how-to-upgrade-an-aspnet-mvc-4-and-web-api-project-to -aspnet-mvc-5-and-web-api-2
我已经安装了 Vs 2013 SP1。
我的项目编译没有任何问题并按预期运行。但是当我打开任何 .cshtml 文件时,我看到以下错误
我尝试了以下链接,没有运气。
任何想法?
asp.net-mvc - How can I migrate from MVC5 to MVC4?
I want to migrate from MVC5 to MVC4, because my server is not supporting MVC 5 and giving me so many issues, Thanks in advance.