在.NET中是否可以从外部类中获取当前页面的HttpContext?
所以,例如在我的页面test1.aspx codebehind中我得到了:
Dim blah As New FeedWriter()
blah.Run()
但是在FeedWriter.vb中,我可以获得test1.aspx的HttpContext吗?或者我必须将其传递给Run()? (我不愿意做后者,因为FeedWriter实现了一个接口,如果要接受参数则需要重新编写)
干杯, 马特
答案 0 :(得分:2)
您可以使用Current
类的HttpContext
属性:
HttpContext.Current;