can i add
$("#report").html('Html.Action("ReportPage", new { id = Model.GoalId })')
here the report is the id of the div where i want to place the result of the action ReportPage id is the parameter passing to the ReportPage actionresult
|
can i add
here the report is the id of the div where i want to place the result of the action ReportPage id is the parameter passing to the ReportPage actionresult |
|||
|
|
|
You need to use server tags in order to achieve this. So:
or
if this is what you mean by result of the action ReportPage. But if by result of the action ReportPage you mean the actual result that your MVC action resturns (ie: a view, json ..) you must use something like this
Hope this helps PS: See http://api.jquery.com/jQuery.get/ on more details regarding jQuery.get() |
||||
|
|
|
This way, your action html will be loaded by ajax after the main page loading. css
html
js
Or, if you want only one http request, you can do this: css
html
js
|
|||
|
|