vote up 1 vote down star
1

Hi guys,

is there a way to send multiple parameters to controller as one parameter?

for example, if I have route:

{controller}/{action}/{languages}

can parameter languages be array of strings? if it does, how to use it...how to send array to controller and how to parse it in controller method?

thanks Marko

flag

I expect the key phrase you are looking for here is "model binder" - however, I don't know the specifics of working with arrays, so I won't attempt to post as an answer... – Marc Gravell Apr 28 at 8:09

1 Answer

vote up 2 vote down check

It may be worth you looking up Mvc.Net Model Binding. This is used to pass objects (rather than primitives) through to a controller simply by naming the fields you're sending with a common prefix.

Example here:

http://odetocode.com/Blogs/scott/archive/2009/04/27/12788.aspx

To create an array of objects, you'd name the fields Person[i].Surname, etc and it will build person objects for you and place it in an array, assuming the Controller action is set up to accept one.

link|flag

Your Answer

Get an OpenID
or

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