.Net MVC 获取Response和Request对象

通过  System.Web.HttpContext.Current  获取

public static string ConstractExportExcel(List<ERP_Contract> list, string FilePath)
        {
            //获取Response
            HttpResponse Response = System.Web.HttpContext.Current.Response; 
        }
原文地址:https://www.cnblogs.com/wwj1992/p/6928628.html