Tagged Questions
59
votes
9answers
4k views
How To improve ASP.NET MVC Application Performance
How do you improve your ASP.NET MVC application performance?
33
votes
1answer
11k views
What is the difference between classic and integrated in IIS7?
I was deploying an ASP.NET MVC application last night, and found out that it is less work to deploy with IIS7 set to integrated mode. My question is what is the difference? And what are the ...
30
votes
2answers
504 views
Is IIS performing an illegal character substitution? If so, how to stop it?
Context: ASP.NET MVC running in IIS, with a a UTF-8 %-encoded URL.
Using the standard project template, and a test-action in HomeController like:
public ActionResult Test(string id)
{
return ...
30
votes
7answers
8k views
IIS URL Rewriting vs URL Routing
I was planning to use url routing for a Web Forms application. But, after reading some posts, I am not sure if it is an easy approach.
Is it better to use the URL Rewrite module for web forms? But, ...
28
votes
4answers
2k views
ASP.NET MVC Routing vs. Reserved Filenames in Windows
In our ASP.NET MVC application, we've noticed that we cannot have The Forbidden DOS File Names—COM1 through COM9, LPT1 through LPT9, CON, AUX, PRN, and NUL—anywhere in our routes. They ...
22
votes
3answers
7k views
How can I get my webapp's base URL in ASP.NET MVC?
How can I quickly determine what the root URL is for my ASP.NET MVC application? I.e., if IIS is set to serve my application at http://example.com/foo/bar, then I'd like to be able to get that URL in ...
21
votes
5answers
10k views
ASP.NET MVC and IIS 5
What is the best way to get hosting of an ASP.NET MVC application to work on IIS 5 (6 or 7). When I tried to publish my ASP.NET MVC application, all I seemed to get is 404 errors. I've done a bit of ...
17
votes
3answers
1k views
ASP.NET MVC + IIS7 + FireFox : trailing slash in URL
Note: I have done hours of digging for the answer, and couldn't find one.
I have an ASP.NET MVC (2.0) application, hosted on IIS7 (integrated mode).
When GET request is made to /Toons/List - I ...
14
votes
6answers
8k views
ASP MVC in IIS 7 results in: HTTP Error 403.14 - Forbidden
I 'm developing an ASP MVC web project. Now i have a requirement which forces me to deploy to an IIS7 inmiddle of development (to check some features). I 'm getting the above mentioned error message ...
14
votes
6answers
7k views
ASP.NET MVC, Url Routing: Maximum Path (URL) Length
The Scenario
I have an application where we took the good old query string URL structure:
?x=1&y=2&z=3&a=4&b=5&c=6
and changed it into a path structure:
...
14
votes
4answers
7k views
How do I install an ASP.Net MVC application on IIS 7 using Wix?
For IIS6 I can use the IIS helpers in Wix to install a web application like this:
<iis:WebAppPool
Id="AP_MyApp"
Name="My Application Pool"
Identity="networkService" />
...
13
votes
2answers
768 views
Deploying EF 4.1 code-first ASP.NET MVC3 to medium trust shared hosting
I think, this is quite common situation nowadays, so its surprising, that I have troubles finding nice and clean solution for it (even here at SO).
I have my ASP.NET MVC3 web application using Entity ...
12
votes
5answers
699 views
Why is ASP.NET forms authentication setting cookies on a static image request?
I have an ASP.NET (MVC) website that is serving static content (images) as well as dynamic content from the same domain. The site uses forms auth, and has a login controller. There have been some very ...
12
votes
1answer
834 views
How to get Elmah working with ASP.NET and IIS 5.1 URL Routing
I am having issues with regards to running my ASP.NET MVC application thru my local IIS 5.1 web server. I believe these issues are related to IgnoreRoutes, but I can't seem to craft an IgnoreRoute ...
11
votes
2answers
2k views
Restrict access to a specific controller by IP address in ASP.NET MVC Beta
I have an ASP.NET MVC project containing an AdminController class - giving me URls like http://myserver/admin/AddCustomer, http://myserver/Admin/ListCustomers, etc.
I want to configure the server/app ...
10
votes
3answers
3k views
How to specify HTTP expiration header? (ASP.NET MVC+IIS)
I am already using output caching in my ASP.NET MVC application.
Page speed tells me to specify HTTP cache expiration for css and images in the response header.
I know that the Response object ...
9
votes
1answer
231 views
Why does IIS on Azure Web Roles need to recompile ASP.NET apps so often?
I have ASP.NET applications deployed on a number of different environments (AppHarbor, Azure, DiscountASP.NET, GoDaddy, etc...) and one thing that bothers me with my deployments on Azure is that my ...
8
votes
2answers
324 views
IIS treats double-encoded forward slashes in URLs differently on the first request than it does on subsequent requests
Recently my team was asked to implement an HttpModule for an ASP.NET MVC application that handled double-encoded URLs on IIS 7 and .NET 3.5. Here's the crux of the problem:
We sometimes get URLs ...
8
votes
2answers
9k views
Configuring IIS (Windows 7) for ASP.NET / ASP.NET MVC 3
I am busy working with an ASP.NET MVC 3 application and using Windows 7. Currently it uses the built in web server to run the web application. I would like it to run in IIS. Is there any advice ...
8
votes
2answers
627 views
ASP.NET MVC: How to serve content while returning status code 404? [closed]
Possible Duplicate:
How to configure IIS to serve my 404 response with my custom content?
I would like to serve a user friendly "not found" page in my ASP.NET MVC application while ...
8
votes
2answers
209 views
Logging all yellow screen of deaths, even when its a compilation problem
Earlier today we experienced a YSOD on one of our MVC sites running on IIS on Windows Server 2003.
Usually, these are reported via e-mail using ELMAH (using this setup), but since this was a ...
7
votes
2answers
117 views
Cannot Return Custom HTTP Error Details Remotely
This is a strange one. I'm running MVC 3 and have a custom action result that wraps exceptions and returns a message along with the standard HTTP error.
public class ExceptionResult : ActionResult
{
...
7
votes
3answers
676 views
How do I get rid of the SecurityException error when trying to use Automapper in ASP.NET MVC?
I'm developing an ASP.NET MVC application with NHibernate and I'm trying to use Automapper to hide the Domain objects from the DTO objects sent to the view:
ClassLibrary with my Domain (for ...
7
votes
4answers
3k views
Setting up IIS7.5 for local ASP.Net Development
Are there any particular settings one should optimally enable/disable/tweak when doing ASP.Net MVC development on local test machine Windows 7 using IIS 7.5 and moving in and out the debugger & ...
7
votes
3answers
5k views
User.Identity.Name blank in ASP.Net MVC
Exactly as per the title.
Simply in my HomeController I have:
string Username = User.Identity.Name;
Why is this value always blank?
Is there something special I have to place in the web.config to ...
7
votes
4answers
1k views
Does ASP.NET MVC require IIS?
Does ASP.NET MVC require IIS? Could I develop an application that uses the new ASP.NET MVC framework on a client machine that does not have IIS installed?
6
votes
2answers
119 views
How does IIS know if a request is webforms or MVC? (ASP.NET)
Short question:
How does IIS know if a request is webforms or MVC?
6
votes
4answers
2k views
Asp Mvc - problem with configuration of forms authentication section?
I have an ASP.NET MVC application running on IIS. In my web.config I defined following section responsible for forms authentication:
<authentication mode="Forms">
<forms
...
6
votes
1answer
101 views
should I install asp.net mvc 2 on a deploy machine?
I'm deploying an asp.net mvc 2 app on windows 2008 R2 and I get error that there is no system.web.mvc.dll, Should I install mvc2 on the deploy machine ?
6
votes
2answers
936 views
Dynamic subdomains in asp.net mvc
I am fairly new to asp.net, and have little experience with iis. I would like to have each user of my application get their own sub-domain, but all use the same controllers. The subdomain would then ...
5
votes
1answer
273 views
What is to prevent me from using IIS Express exclusively on my development box?
I have only read a bit about IIS Express, and am in the process of downloading and installing it now. It seems like i should be able to uninstall IIS proper and just make use of IIS Express when ...
5
votes
2answers
1k views
Asp.Net MVC 3 Partial Page Output Caching Not Honoring Config Settings
I have a simple partial view that I'm rendering in my main view with:
@Html.Action("All", "Template")
On my controller I have this:
[OutputCache(CacheProfile = "Templates")]
public ...
5
votes
2answers
117 views
IIS cannot serve pages ending with .config
This is obviously a security issue and probably do not want to change this, but it would be nice to handle the error. Any ideas?
I see that stackoverflow is not immune:
...
5
votes
1answer
114 views
How to deploy and secure an ASP.NET web app to be available to internal and outside users?
My company has several web applications written in ASP.NET. We need to make these applications available to Intranet users as well as authenticated external users. Most of the features are the same ...
5
votes
4answers
2k views
404 Pages in ASP.NET MVC
I'm building my first ASP.NET MVC website, and I'm trying to figure out how to implement a 404 page.
Should I create a controller called "404Controller?" If so, how do I then register this ...
5
votes
3answers
692 views
Asp.Net MVC missing style and defaults to logon page
I just setup an out of the box "W2K8 R2 Web" server and installed IIS 7 out of the box. Then I installed the .NET4 framework and ran "aspnet_regiis -i" command.
I created a site using .NET 4.0 ...
5
votes
1answer
318 views
Map a domain to an MVC area
Anybody got any experience in mapping a domain to an MVC area?
Here's our situation:
Old system (still active but will soon redirect to new store):
www.example.com - our main site where we send ...
5
votes
7answers
1k views
Small web-framework like Sinatra, Ramaze etc in .NET
Are there any similar frameworks like Sinatra, Ramaze etc in .NET?
I'm in theory after a framework that let's me create an entire webapp with just one classfile (conceptually) like Sinatra.
I'm ...
5
votes
3answers
456 views
Do you lose functionality when hosting ASP.NET MVC on IIS 6? If so, what?
As a dev team, we're looking to switch to asp.net MVC and I've heard rumors about IIS 6 not being able to support all of the MVC functionality. Is this true? Is there any official set of ...
5
votes
2answers
775 views
trailing slashes on asp.net mvc urls with IIS 7
I'm using asp.net MVC on IIS 7 / windows 2008 server.
The problem is that asp.net mvc generates urls with no slash at the end, like: http://site.com/category/asp. When this url is clicked, IIS 7 ...
5
votes
4answers
14k views
Deploying an ASP.NET MVC app to IIS7 and keeping a clean web.config
I'd like to deploy my ASP.NET MVC application to a web hosting company (like DiscountASP.net). I'm confused about what needs to be in the web.config file on the web server. When I create the project ...
4
votes
1answer
38 views
How can I deploy a new web application to a subdirectory of an IIS site and not have to click “Convert To Application”?
I'm trying to write an automated deployment application that runs on one box but deploys to a remote QA server. Basically each time a branch is created in source control my automated deployment tool ...
4
votes
2answers
91 views
Why would HttpContext not contain a “Host” header?
In my MVC3 application I have a custom controller factory that has CreateController()method working as follows:
public IController CreateController(RequestContext requestContext, string ...
4
votes
1answer
53 views
How do I use my HTTP handlers for selected paths and MVC handler for the rest?
I have an MVC2 application. I also have a set of ready HTTP handlers that derive from System.Web.IHttpHandler. How do I use them together?
I tried the following in web.config:
...
4
votes
2answers
154 views
Can ASP.MVC 3 run in a site root and allow other ASP.Net apps to run in subfolders?
Can I have an ASP.MVC 3 application running in my site root (a simple CMS to provide MOST site content), and have it co-exist with additional ASP.Net apps (2 Web Forms apps and 1 MVC app) running in ...
4
votes
6answers
844 views
Change http status 503 to 200 when serving app_offline.htm for specific URL
The app_offline.htm file that ASP.NET serves returns the http status 503. This is the correct behavior for most situations. However, in the scenario where a specific URL is requested (e.g. ...
4
votes
1answer
251 views
Is there a way to run iis express from within a .Net app?
Is there an assembly that I can reference that would allow me to run my own instance of IIS from within my app?
4
votes
3answers
320 views
Why is ASP.NET MVC asking me to re-authenticate for .PNG files but not .gifs or .jpegs?
What am I missing here??? For some reason, anytime I reference a .png from my application.css file I get prompted for credentials. BUT, I can reference .gifs, .jpegs, etc... from my images directory ...
4
votes
5answers
649 views
asp.net mvc 2 web application inside a Web site?
I have a Asp.Net Web Site deployed as a WebSite inside IIS 7.5.
http://localhost/WebSite
Then I have a second Asp.Net MVC 2 web application which is deployed as Sub Application inside the ...
4
votes
2answers
479 views
Is AsParallel() good practice in a web environment?
I have no doubt that for client applications, AsParallel() will bring some out-of-the-box performance gains. But what if I would use it in a web environment. Let's say I have a widget framework that ...