vote up 0 vote down star

I am barely starting out with my first project on the ASP.NET MVC project type and I am creating a Details page where instead of passing the templated (int id), I would like to pass a string instead. But when I am in debug mode, and enter this in the URL, "myString" is null. Why so? Do I have to change anything else somehwere else?

So if I go to the URL and enter this:

http://localhost:2345/Bank/EmployeeDetails/3d34xyz

public ActionResult EmployeeDetails(string myString) // myString is null
{
     return View();
}
flag

4 Answers

vote up 8 vote down check

In you Global.asax.cs file, you will have the following route mapped by default:

routes.mapRoute(
    "Default",
    "{controller}/{action}/{id}",
    new { controller = "Home", action = "Index", id = null });

That means that an url like http://localhost:2345/Bank/EmployeeDetails/3d34xyz will go to the Bank controller, the EmployeeDetails action and pass the value 3d34xyz into a parameter named id. It is perfectly allright to pass a string, but in order to make it work you have two options:

1) Rename the variable to id in your action method.

public ActionResult EmployeeDetails(string id) { ... }

2) Add another route that matches whatever name you want for your string. Make sure to make it more specific than the default route, and to place it before the default route in the Global.asax.cs file.

routes.mapRoute(
    "BankEmployeeDetails"
    "Bank/EmployeeDetails/{myString}"
    new { controller = "Bank", action = "EmployeeDetails", myString = null });

This will pass a default value of null to myString if no value is passed in the url, but with the url you specified you will pass the value 3d34xyz.

link|flag
Crap. I was too slow... :P – Tomas Lycken May 11 at 19:30
Even better! See, you do get rewarded for your efforts! Thanks for the lesson! Greatly appreciated!!! – Dvojrak May 11 at 19:32
Glad I could help =) – Tomas Lycken May 11 at 19:39
Just fyi, I did find a small error in my post: if you choose option 2 and add a new route, it should be more specific than the default route, not more general as I originally stated. This is because the MVC Framework will go through the routes in order, and grab the first one that matches - so you want to make sure that only the url:s that are relevant match the new route. – Tomas Lycken May 11 at 19:41
There go my points :) – David P May 11 at 19:41
vote up 3 vote down

Assuming you haven't modified the default routes (In your Global.asax.cs):

        routes.MapRoute(
            "Default",                                              // Route name
            "{controller}/{action}/{id}",                           // URL with parameters
            new { controller = "Home", action = "Index", id = "" }  // Parameter defaults
        );

The method is expecting it to be named "id".

link|flag
Thank you! Works perfectly! – Dvojrak May 11 at 19:26
You're welcome. – David P May 11 at 19:26
Sorry to steal from you... ;) – Tomas Lycken May 11 at 19:42
vote up 1 vote down

Change the name of myString to id.

link|flag
Thanks! That's it! – Dvojrak May 11 at 19:26
vote up 1 vote down

Rename myString to id if you are using the default route table.

link|flag
Thanks! That's it! – Dvojrak May 11 at 19:26

Your Answer

Get an OpenID
or

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