摘要:[筆記] ASP.NET MVC中在Controller裡取得HttpContext方法
有時後在專案中,會有泛型處裡常式(*.ashx)檔案
如果在controller中需要呼叫此檔案,則必須將此Action中的HttpContext傳入才可以使用
但是使用this.
必須使用
this.HttpContext.
才可以取得HttpContext
摘要:[筆記] ASP.NET MVC中在Controller裡取得HttpContext方法
有時後在專案中,會有泛型處裡常式(*.ashx)檔案
但是使用this.
必須使用
this.HttpContext.
才可以取得HttpContext