HTML使用@Html.Action

Html代码:

<a href="@Url.Action("ServerExportMDBFile", "DataStandard")">下载</a>

后端代码:

public ActionResult ServerExportMDBFile()
{
    return View();
}

页面点击下载就可以直接访问到DataStandard控制器下的ServerExportMDBFile方法

原文地址:https://www.cnblogs.com/yy981420974/p/8192816.html