如何获取隔离代码块的.NET HttpContext

发布于 2024-08-28 09:48:49 字数 304 浏览 10 评论 0 原文

在 .NET 中,是否可以从外部类中获取当前页面的 HttpContext?

因此,例如在我的页面 test1.aspx 代码隐藏中,我有:

    Dim blah As New FeedWriter()
    blah.Run()

但是在 FeedWriter.vb 中,我可以获得 test1.aspx 的 HttpContext 吗?或者我必须将它传递给 Run() 吗? (我不愿意做后者,因为 FeedWriter 实现了一个接口,如果要接受参数,则需要重写该接口)

干杯, 马特

In .NET is it possible to get the HttpContext of the current page from within an external class?

So, for example in my page test1.aspx codebehind I've got:

    Dim blah As New FeedWriter()
    blah.Run()

But inside FeedWriter.vb, can I get the HttpContext of test1.aspx? Or would I have to pass it in to Run()? (I'm unwilling to do the latter because FeedWriter implements an interface which will need to be re-written if it's to take arguments)

Cheers,
Matt

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你的往事 2024-09-04 09:48:49

您可以使用 HttpContext 类的 Current 属性:

HttpContext.Current;

You can use the Current property of the HttpContext class:

HttpContext.Current;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文