继续执行母版页时内容页 Response.End
- 我有一个网络表单,它使用母版页中的事件来记录活动。
- 我有一个 sitemap.aspx 文件,可以为 Google 生成正确的 XML。
- sitemap.aspx 调用 Response.End() 以确保正常的 ASP.NET 内容(视图状态、母版页内容等)不会呈现。此 XML 必须准确。
- 当我从内容页调用 Response.End() 时,母版页的任何事件都不会触发。
有没有办法告诉 CLR 发送确切的这个字符串作为响应,同时允许母版页继续正常执行,而不必将 ASPX 与母版页解耦并调用日志记录手动方法?
- I have a webform that uses events in the master page to log activity.
- I have a sitemap.aspx file that generates proper XML for Google.
- The sitemap.aspx calls Response.End() to ensure the normal ASP.NET stuff (view state, master page content, etc) does not render. This XML must be exact.
- When I call Response.End() from the content page, none of the master page's events fire.
Is there a way to tell the CLR to send exactly this string as the response, while allowing the Master page to continue its normal execution, and without having to decouple the ASPX from the Master page and call the logging methods manually?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有预先打包的方法可以完成您所要求的操作。
一种方法可能是在将字符串写入输出缓冲区后在某处(可能在 HttpContext.Items 中)设置一个标志。然后,在您的页面类中,重写 Render() 方法;如果未设置该标志,则调用
base.Render()
,否则不调用。通过跳过 Render() ,不会生成额外的输出。There's no pre-packaged way to do what you're asking.
One approach might be to set a flag somewhere (maybe in
HttpContext.Items
) after you write your string to the output buffer. Then, in your page class, override theRender()
method; if the flag is not set, then callbase.Render()
, otherwise don't. By skippingRender()
, no additional output will be generated.