[筆記] ASP.NET MVC中在Controller裡取得HttpContext方法

摘要:[筆記] ASP.NET MVC中在Controller裡取得HttpContext方法

有時後在專案中,會有泛型處裡常式(*.ashx)檔案

如果在controller中需要呼叫此檔案,則必須將此Action中的HttpContext傳入才可以使用

但是使用this.HttpContent只能取得HttpContextBase型別

必須使用

this.HttpContext.ApplicationInstance.Context

才可以取得HttpContext