Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here is the scenario:

I have a login page, when user sign it it is redirected to home application page. Then user is using browser back button, and now he is on login page. He tries to login again but now an exception is thrown:

HttpAntiForgeryException (0x80004005): The provided anti-forgery token was meant for user "", but the current user is "userName".

I know this is related to caching. I disabled browser caching for login action using custom NoCache filter which sets all required headers - no-cache, no-store, must-revalidate, etc. But

  • this is not working on all browsers
  • especially Safari (mobile in most cases) totaly ignores such settings

I will try to make hacks and force safari mobile to refresh, but this is not what I'm expecting.

I would like to know if I can:

  • handle exception without showing user any problem exists (totally transparent for user)
  • prevent this problem by replacing anti forgery token user name which will allow user login again without this exception, if my hacks related to browser caching will stop work in next versions of browsers.
  • I really would like not to rely on browser behavior, since each one behaves differently.

UPDATE 1

To make some clarification, I know how to handle errors in MVC. The problem is that this handling errors is not solving my problem at all. Basic idea of error handling is redirect to custom error page with nice message. But I want to prevent this error to happen, not to handle it in user visible way. By handle I mean catch make username replace or other suitable action then continue login.

share|improve this question

1 Answer

You should be able to handle the exception by adding a action filter to handle your error.

[HandleError(View="AntiForgeryExceptionView", ExceptionType = typeof(HttpAntiForgeryException))]

Todo so make sure that custom errors are turned on in your web.config.

<customErrors mode="On"/>

You could also take a look at this blog for more info about handle error.

Edit Since you're using MVC4 and the blog is about MVC3 you could also take a look at the MSDN library - HandleErrorAttribute, but the version shouldn't really make a difference.

share|improve this answer
yes, but this all telling about redirectling (so handling this errors breaks current action (execution). I would like to handle this error without breaking action, so in this case handle, replace user name and continue login with proper data – Marcin Oct 23 '12 at 9:00
I think that when you can catch the error you can redirect it to a view (controller) where you replace the username and continue the login, with the previously entered data. Also see: stackoverflow.com/questions/1794936/… – Jos Vinke Oct 23 '12 at 9:17

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.