在 HttpModule 内渲染页面?
有人知道如何在 HttpModule 中渲染 aspx 页面并将其流回浏览器吗?
Anyone got an idea of how to render an aspx page inside of an HttpModule and stream it back to the browser?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以这样做:
You can do something like this:
最好的方法可能是使用 URL 重写将标准 Handler 处理步骤重定向到您想要呈现的页面。类似于:
您可以从 BeginRequest 事件处理程序运行它。
The best way is probably to use URL rewriting to redirect the standard Handler processing step to the page you want to render. Something like:
You could run that from the BeginRequest event handler.