私は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)
{
}