vote up 0 vote down star

for example you have custom route like this:

CustomerOrder/{action}/{id}/customerid={customerid}

the url became like this:

CustomerOrder/Create/customerid=1

how can you get the customerid and use it in the view?

<%= Html.MenuItem("Back to List", "Index", new { customerID = ???????? })%>

flag

25% accept rate
Can't you change your request URLs to match this route: CostomerOrder/{action}/{id}/{customerId} ? – Robert Koritnik Oct 14 at 6:33
is there any difference? – Fleents Oct 14 at 6:51
what's the question then?... sorry – opetrov Oct 14 at 7:00

3 Answers

vote up 0 vote down

I'm new to MVC but I'm thinking the controller gets a customerid parameter and that could be passed to the View (via ViewData), no?

link|flag
vote up 0 vote down

Heres the code in Global.ASAX

    public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

        routes.MapRoute("CustomerOrders", "CustomerOrder/{action}/{id}/customerid={customerid}",
                       new { customerid= "{customerid}", controller = "CustomerOrder", action = "Index", id = "" });

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

    }

link|flag
CustomerOrders isn't a correct url, as you're not specifying a ? in any case. – Dan Atkinson Oct 14 at 8:33
Surely, at the least, you should have to do: CustomerOrder/{action}/{id}/?customerid={customerid} – Dan Atkinson Oct 14 at 8:33
Please update your question with this, rather than add it as a new answer. – Dan Atkinson Oct 14 at 8:44
i got it.. the url must be CustomerOrder/{action}/{customerid}/{id} because customerid always have a value. now going back to my question. since the url is CustomerOrder/Index/1 and 1 is the customerid (not orderid), if i have an actionlink like this in my Index View, Html.ActionLink("Create New Order", "Create", new {projectid = ?????}) how can i get the value of the projectid(?????) so i can pass it to the create action? – Fleents Oct 15 at 7:33
vote up 2 vote down

The equals sign is going to confuse url parsers since it has special meaning.

If you were to change your route to:

routes.MapRoute("CustomerOrder", "CustomerOrder/{action}/{id}",
    new { controller = "Order", id = "" });

Then the following view code

<%= Html.MenuItem("Back to List", "Index", new { customerID = 5 })%>

Would create a link to:

CustomerOrder/Index/?customerid=5

which would work just fine.

Note

Given your current routing configuration, you would get the exact same results by deleting your CustomerOrder route since it is broken and you get the desired results from the default route.

link|flag
I tried to change it to <code> ?customerid = 1 </code> but this error occured.. The route URL cannot start with a '/' or '~' character and it cannot contain a '?' character. Parameter name: routeUrl – Fleents Oct 14 at 7:20
@fleents: Can you copy your route configuration in Global.asax.cs? It would probably help. And put it in your original question. Not here... – Robert Koritnik Oct 14 at 7:55
@Fleents: you can't put querystrings in the route. Phil Haack discusses that they're not used here: haacked.com/archive/2007/… – Dan Atkinson Oct 14 at 8:45

Your Answer

Get an OpenID
or

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