How do I pass a whole model via html.actionlink or using any other method except form submission? Is there any way or tips for it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
Though it's not advisable in complex cases, you can still do that!
This will generate an action link with /SearchController/SearchAction?Search=routing&Category=mvc&Page=23 Here will be your action,
|
||||
|
|
No, you cannot pass entire complex objects with links or forms. You have a couple of possible approaches that you could take:
|
|||
|
|
|
You could use javascript to detect a click on the link, serialize the form (or whatever data you want to pass) and append it to your request parameters. This should achieve what you're looking to achieve... |
|||
|
ViewData? – Yasser Jul 22 '12 at 6:30