Can i use List or something?
|
|
Scott Hanselman has an excellent tutorial for doing this here. |
|||||
|
|
Just take the right sort of collection. Exactly which sort depends on which version: MVC1 : |
|||
|
|
|
You need to pass them to your action via adding each integer to your POST or GET querystring like so:
Then in your action you will have the following action
MVC will then populate the list with 1,4, and 6 One thing to be aware of. Your query string CANNOT have brackets in them. Sometimes when the javascript lists are formed your query string will look like this:
This will cause your List to be null (or have a count of zero). The brackets must not be there for MVC to bind your model correctly. |
|||
|
|
|
If you are trying to send the list from some interface item (like, a table), you can just set their name attribute in the HTML to: CollectionName[Index] for example:
And
The IntList parameter wil receive a list containing 1 and 2 in that order |
|||
|
|
|
||||
|
|