I put the authentication attribute that sets:
filterContext.Result = new HttpUnauthorizedResult();
so when I try to access
http://www.mysite.com/Forum/Polls
and I am not authenticated I am redirected to:
http://www.mysite.com/Account/Log?ReturnUrl=%2FForum%2FPolls
I want to have the following line instead:
http://www.mysite.com/Account/Log?back=%2FForum%2FPolls
, so instead of 'ReturnUrl' need 'back'. Where I can ovveride this behaviour. Thanks.