0I want to insert the output of an action into a view. The problem is that the action requires some info in the querystring. Is there a way to include the querystring params in Action?
Example:
@Html.Action("Get","Contacts")
To get the proper result back, I need to pass ?pagenum=1 to the action.
@Html.Action("Get?pagenum=1","Contacts") unfortunately doesn't work