vote up 0 vote down star

Has anyone else had this issue? I have to be doing something wrong.

So I'm setting up a route for errors like this:

routes.MapRoute
(
 "SharedError",
 "Shared/Error/{error}",
 new { error = "" }
);

And calling like:

return parentController.RedirectToRoute("SharedError", new RouteValueDictionary(new { error = errorMessage.ToString() }));

And on the controller:

public ActionResult Error(String error)

Simple right? Well when this is actually run, error is null despite the url looking like:

/Shared/Error/ThisIsTheError

But the error parameter in the Error method is null. (And yes I've tried other words)

Now if I replace all that with the word 'id' everything works.

Global.asax.cs

routes.MapRoute
(
 "SharedError",
 "Shared/Error/{id}",
 new { id = "" }
);

Redirect:

return parentController.RedirectToRoute("SharedError", new RouteValueDictionary(new { id = errorMessage.ToString() }));

Shared Controller:

public ActionResult Error(String id)

Is id a must have word for all routes if you have a default route taking in a value?

flag

76% accept rate

1 Answer

vote up 4 vote down check

You always need to specify the controller and action parameters:

routes.MapRoute
(
 "SharedError",
 "Shared/Error/{error}",
 new { controller = "Shared", action="Error", error = "" }
);

I'm guessing that the reason why using id works for you is because you have the default route still registered, which has id as a parameter and default values for controller and action.

Note, if you still have the default route, make sure you add your route before it, otherwise it will match the other one first.

link|flag
Right, but it should be new { controller="Shared", action="Error", error = "" } – Dennis Palmer Jun 16 at 23:31
Tried that, still is jacked. – Programmin Tool Jun 16 at 23:52
Corrected (although I don't think the OP mentioned what his controller name was). – DSO Jun 16 at 23:52
@programmin: see my note at the end, if that was your problem. – DSO Jun 16 at 23:53
also make sure you have controller and action set correctly, in the example i just made them up – DSO Jun 16 at 23:56
show 1 more comment

Your Answer

Get an OpenID
or

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