Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm working on some error handling in my MVC app, and I'd like to change asperrorpath to something that doesn't give away the fact that I'm using .NET... something like path

Can anyone give me some direction on how to change that out?

share|improve this question
Hello rockinthesixstring. Have you found the answer to this yet? I'd like to do this too! Anyone? Anyone? +1 – Funka Jun 26 '10 at 2:12
Sorry, no answer for me yet. – Chase Florell Jun 26 '10 at 2:42
Sorry, you're fooling yourself i you think it's not trivial to know if a site is running asp.net. asp.net and mvc both have very strong telltale signs thatdoesn't take much effort to figure out, and this is built in to the way that requests are handled so there is no configuration or other change you can make that will hide it – Mystere Man Mar 18 '12 at 19:48
@MystereMan, not trying to hide it, just don't want it totally obvious either. – Chase Florell Aug 20 '12 at 19:37

3 Answers

my wprk around is using

route.MapRoute("NotFound", "{*url}", new {controller = "Home", action = "NotFound"})

At the bottom most, which I have NotFound action in HomeController. It will simply catch all other urls.

share|improve this answer
nope. I don't care about the URL (I already have that taken care of)... but the querystring for the returnUrl is currently ?asperrorpath=http... whereby everyone knows I'm using .net (not saying it's a bad thing). I'd just like to change the item to ?go=http.... Which I've already done. I'll post my solution later in the day. – Chase Florell Mar 10 '11 at 16:56
Yeah I found so many trick, this is what I think the best. If using this way, you need to turn On (or RemoteOnly) customError but don't define any 404 redirection etc in the web.config, the "{*url}" will catch it. I am using MVC 3. Not sure about previous version. I will never get the ?asperrorpath= – CallMeLaNN Mar 11 '11 at 16:27

Add redirectMode="ResponseRewrite" to the customErrors section. That worked for me.

share|improve this answer
spot on just what i was looking for thanks – Stuart Apr 16 at 11:15

The are many ways you can solve your problem. It depends what you want.

  1. You can edit section in your web.config And write default link for redirecting on error and also specify different links for different error like <error statusCode="403" redirect="NoAccess.htm" />
  2. You can use HandleError attribute for your Controller/Actions. You can read about it here.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.