In action GetReportSnapshot I need to pass a value to filter the data, the only alternative I found was to add the route of my controller, there is another alternative?
Thank you.
Parameters for the action GetReportSnapshot
Re: Parameters for the action GetReportSnapshot
Hello Tânia,
You can use POST parameners (or Form parameters), for example:
Thank you.
You can use POST parameners (or Form parameters), for example:
Code: Select all
public ActionResult GetReportSnapshot()
{
var values = StiMvcViewer.GetFormValues();
var paramValue = values["ParamName"];
...
}