0
votes
0answers
209 views

A public action method 'XXX' was not found on controller 'YYY'

We have an ASP.NET MVC3 project that has ELMAH installed, we have been getting errors every now and then for a while now and we have not been able to reproduce it at all. The error we have been ...
0
votes
1answer
194 views

IIS hosting ASP.NET MVC site gives http 404 for urls containing 'web.config'

Requesting a page from IIS (hosts ASP.NET MVC 3 site) with url containing web.config gives 404 error. Urls with app.config have no problem. Local Visual Studio development server has no issues with ...
1
vote
1answer
121 views

403 and 404 errors on html files downloaded from blob storage into webrole

I'm trying to use static .html pages for a website that encounters large traffic spikes. The website is an MVC3 app. The static .html pages are in a directory structure something like the following: ...
1
vote
0answers
80 views

404 error encountered when requesting a classic asp page in MVC3

I am converting a classic asp application to ASP.NET MVC3. I have following route mappings in the global.asax: routes.MapRoute("LogOn", "Scripts/Logon", New With {.controller = "Account", .action = ...
0
votes
0answers
618 views

MVC 3 - Ajax request stops webgrid sort querystring from working - 404 error

I have a problem with an ajax request and I know what the problem is but I don't know how to fix it. I have an index page and it has two partial views. One has checkboxes which calls an ajax request. ...
0
votes
2answers
449 views

favicon.ico 404

I have an icon for favicon in my master page (let's say I have ~/resources/company.ico defined). Now if this company.ico doesn't exist, the browser (tested ie and mozilla) will try to look for default ...
5
votes
2answers
1k views

ASP.NET MVC Custom Error Pages with Magical Unicorn

my question is regarding Pure.Kromes answer to this post. I tried implementing my pages' custom error messages using his method, yet there are some problems I can't quite explain. a) When I provoke ...
2
votes
0answers
331 views

Using IIS 7.5 Express to launch MVC 3 application, gives HTTP Error 404.20 - Not Found

I have an existing MVC3 application and I want to run that using IIS 7.5 express. When I try to do that I get the following error: HTTP Error 404.20 - Not Found No default document. Most likely ...
2
votes
2answers
981 views

ASP.NET MVC 3 HttpPost action method not found

I have a simple form that posts to an HttpPost action method, which returns its corresponding view. My issue is that I'm getting a 404 Not Found error. Oddly enough, if I change the form method and ...
0
votes
1answer
1k views

ASP.NET MVC 3 AJAX request returns 404 Not Found error

Here's my code (question found below): VIEW // This function is called by another function when radioButtonGroup.change(). var requestValues = function (form) { var option = ...
0
votes
3answers
193 views

How to fix indexed pages that shouldn't be crawled by GoogleBot and other search engine crawlers?

On an existing .Net MVC3 site, we implemented paging where the URL looks something like www.mysite.com/someterm/anotherterm/_p/89/10, where 89 is the page number and 10 is the number of results per ...
0
votes
2answers
146 views

Change default view folder for custom Http404 error page

I want to custom error pages in my asp.net mvc3 website. So, I found this very useful post: Custom error pages on asp.net MVC3 and it works well However, my Http404.cshtml file isn't in the Views ...
2
votes
2answers
583 views

ASP.NET site Custom 404 Error blocked by Server Error

I have an MVC3 website and I'm trying to get the 404 error pages to show correctly. I've got it all set up that it does not redirect the URL, returns an actual 404 error status in the header, logs ...
0
votes
1answer
821 views

HttpErrors existingResponse=“Replace” prevents custom error handling for MVC

I'm handling errors using the [HandleError] attribute from within an MVC3 application. This works fine but for this to work, I needed to add <system.web> <customErrors mode="On" /> ...
1
vote
2answers
213 views

MVC3 Site on IIS7.5 - how do I make static content available outside session?

I have a MVC3 site with static images served nicely from /Content/images to users of the site, but I get a 404 if I try to access them outside a session. This is problem for icons and small branding ...
0
votes
1answer
82 views

ASP.NET and PNG from root not working

I am baffled but why wouldnt http://usayouthhoops.com/apple-touch-icon-144x144.png work, even though it's in the root? I keep getting a 404 error. I update the extension to .JPG and it works. This ...
1
vote
4answers
835 views

Upload File Website Hosted In IIS Returns HTTP 404 File Or Directory Not Found

my site is hosted at IIS7.5 i have a controller action as below [HttpPost] public ActionResult Create(ClientDocument clientdocument,HttpPostedFileBase FilePath) { if ...
1
vote
3answers
748 views

Correctly send user to 404 if dynamic content is not found (ASP.NET MVC)

I have implemented 404 handling for the general case in ASP.NET MVC 3, for when a controller/view is not found. But how should it be handled inside the controller if the user is trying to access ...
0
votes
3answers
856 views

AJAX Webmethod call returns 404 on MVC3

I've been using EXTJS 4 and loading my stores through an AJAX call to a Webmethod on the codebehind of an .aspx page. This method has worked for all of my projects until I tried porting my EXTJS 4 ...
0
votes
0answers
156 views

Handling an expected 404 in Asp.Net MVC app

I am currently building a mobile site for my client, the m-site essentially replicates the data on the website but in a mobile friendly format. Anyway the data is currently coming from sharepoint ...
1
vote
1answer
1k views

In MVC calling webservice with ajax call not working give error code 404?

In my .net framework with MVC calling webmethod like. webservice1.asmx/helloWorld with Ajax give error 404 not found..In my another server same code working. Is there anything missing to call ?? and ...
0
votes
1answer
1k views

Razor code in cshtml (error) page produce error

I throw 404 error from application. Page for 404 error is in the /ErrorPages/Error_404.cshtml In this file I have only HTML code and it works fine. But if I add some razor code it throws configuration ...
2
votes
1answer
291 views

.NET MVC3: Prevent 404 for missing CSS files? Or ensure files exist before writing HTML?

We have a requirement to provide skinning capabilities to an ASP.NET MVC3 app. My approach so far has been to tackle this with a cookie and child actions for the css files: Client links to our app ...
2
votes
1answer
339 views

Moq-ing a 404 error

I have the following 404 error ActionResult which is thrown when web pages are not found: public ActionResult InvokeHttp404(HttpContextBase httpContext) { IController errorController = new ...
3
votes
3answers
2k views

ASP.NET MVC3: customErrors in Web.Config ignored on localhost and on server, custom error page only displays on localhost

I'm trying to get the custom 404 page we've built to display instead of the default 404 page created by the server. It works as intended when debugging the application locally, but not when running ...
0
votes
2answers
306 views

MVC3 gives Page Not Found error when the ID part of the route contains a full stop

I have created a directory based site in ASP.NET MVC3 which when you navigate through the site you get to a page like http://server/domains/details/mydomain.coop. The rest of the site works fine ...
0
votes
1answer
174 views

When using MVC3 + SQL CE I get 404 on all pages with scaffolding against the SQL CE Database

The problem only occurs on a server with Windows 2008 Server, locally I run the application and have no issues. I've used the "bin deploy" and "Add Deployable Dependencies..." options and still no ...
1
vote
0answers
384 views

MVC3 project / 404 out of the box

I've read numerous blogs, forum questions and answers, including a bunch here on SO, but still can't figure this one out. I'm trying to learn MVC3 by running a template MVC3 project out of the box, ...
0
votes
1answer
125 views

ASP.NET MVC 3 Basic Routing Issue

Works: http://localhost/ApplicationName/Home/Index http://localhost/ApplicationName/ http://localhost/ApplicationName/AnotherController/ 404 Error: http://localhost/ApplicationName/Home I have ...
2
votes
3answers
654 views

asp.net MVC routing - javascript url 404 errors

While developing my app (asp.net mvc3) locally everything was fine using the VS dev app server. The app was located at localhost/. However, I'm attempting to deploy the application on a IIS 7.5 server ...
1
vote
2answers
206 views

asp.net mvc 3 url end with a “.” and throws a 404

I have a asp.net mvc 3 application and I want the users to be able to enter in tags of sorts. However, when a tag ends with a "." (no quotes) it throws a 404 before hitting the controller's method. ...
0
votes
1answer
486 views

asp.net mvc app in windows 2003 server extension less runs only home page

I've setup an asp.net mvc app on a windows server 2003 machine with IIS6. ASP.NET MVC3 and .NET4 framework has been installed. Now, I setup a New Website, New AppPool for .NET4 and then put a virtual ...
0
votes
2answers
164 views

How can I override the 404 response in MVC 3?

I'm building an api using ASP.NET MVC 3. When a controller action is not found I don't want the standard message and result returned. I want to respond with a json message containing additional data ...
1
vote
1answer
468 views

Why can't I debug this very simple ASP.NET MVC3 application?

I decided to follow this tutorial on getting started with ASP.NET. I have Visual Web Developer 2010 Express (with SP1) installed, as well as the ASP.NET MVC3 tools. I created the project and starting ...
17
votes
5answers
17k views

Returning 404 Error ASP.NET MVC 3

I have tried the following 2 things to have a page return a 404 error: public ActionResult Index() { return new HttpStatusCodeResult(404); } public ActionResult NotFound() { return ...
7
votes
1answer
7k views

Other errors find my Error.cshtml, why doesn't 404 error find Error.cshtml?

I am tackling ASP.NET, MVC 3, web development, for the first time, all at the same time. Please bear with me, as I know this subject has been discussed heavily from different angles. I still have not ...
8
votes
2answers
5k views

MVC 3 - New Area - 404 error - Resource not found - have tried route debugger

I have a small MVC 3 app - bit of a demo ground. I have one area and thats been working fine. I have just added another area expecting to just spin up the app and it work - but no, 404 - The resource ...