0

我在控制器中有一个功能。名称为reportController 返回图表

public FileContentResult GetChart(DateTime tuNgay, DateTime denNgay)
    {
        return File(Chart(tuNgay, denNgay), "image/png");
    }

和功能 Chart(tuNgay, denNgay) 现在我想从视图中调用它们

<div><img src="/report/GetChart" />

但我得到错误请帮助我

4

1 回答 1

0

你可以使用@Url.Action

<img src='@Url.Action("GetChart","report")' />
于 2013-03-10T12:15:40.133 回答