我在 javascript 中创建图像并将其分配给 javascript 中的 img 元素。如何在 MVC3 中单击 ActionButton 时将该图像传递给控制器?
Javascript
var picture = jqplotToImg($('#ChartContent')); //method to change chart as picture, no needed here
var img = document.getElementById("img1");
img.src = picture;
看法
@using (Html.BeginForm())
{
<img id="img1" name="img1" />
@Html.ActionButton("Export","ExportData","Report")
}
控制器
public void ExportReport(FormCollection fc)
{
}