Basically I want to have a way to select the number in my
foreach(var sheet in Model.Sheets.Take(100))
{
...
}
I would like the user to be able to specify this value and reload the page using the take method, how can this be done?
|
feedback
|
|
Why not pass a parameter in to your controller?
| |||
|
feedback
|
|
If this is in your View, you're doing it wrong. Do this For example:
| |||
|
feedback
|