asp.net-mvc
Uploading a large file (up to 100gb) through ASP.NET application
I need to somehow implement an ability to upload files through an ASP.NET application which is working within our corporate network. The problem is those files are getting increasingly big. At the moment we’re using a very generic asynchronous upload but the problem is that files are getting increasingly big and the max limit of 3.9gb per file set through maxAllowedContentLength since the max value of uint won’t allow anything more. Soon files which users are suppose to upload will exceed this value and might reach up to 100gb in size.
Why CSS and JS files bypass Asp.Net MVC routes?
I received a prototype application built with Asp.Net MVC4. It is currently replacing the default controller factory with a custom one using NInject, ServiceLocator and all.
Visual Studio ASP.Net MVC undo set as start page action
I have an web application that I’m working on, it was working fine until my curiosity got the better of me and I right-clicked on a view and chose Set As Start Page option. Now, whenever I run my application it takes me to the Resource Not Found error page. I have the default register route set in my Global config route which was working fine before. I notice that the URL now reads:
How do i use Application_Error in ASP.NET MVC?
I want to use Application_Error with my MVC project, but i can’t get it to work. I add the following to my Global.asax file:
ASP.NET Identity, add another user to role instantly (they don’t have to log out and in again)
First of all, I’m aware of this question: MVC 5 AddToRole requires logout before it works?
How to separate model, view and controller in an ASP.NET MVC app into different assemblies
At the moment I am trying to get into the ASP.NET MVC framework.
For most of my test applications I used a single assembly/project. This worked fine for some smaller applications. Then I wondered how I could place my model, controller and view classes into separate assemblies? In really big web-applications it is not very realistic to put everything into a single assembly/project.
ASP MVC Cookies not persisting
I have a ASP MVC App with some seemingly simple code to save and retrieve cookies but for some reason they won’t persist. The code in the controller is :
How can I avoid duplicate content in ASP.NET MVC due to case-insensitive URLs and defaults?
Edit: Now I need to solve this problem for real, I did a little more
investigation and came up with a
number of things to reduce duplicate
content. I posted detailed code
samples on my blog: Reducing
Duplicate Content with ASP.NET MVC