继续执行母版页时内容页 Response.End

发布于 2025-01-06 06:00:03 字数 330 浏览 1 评论 0原文

  • 我有一个网络表单,它使用母版页中的事件来记录活动。
  • 我有一个 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 技术交流群。

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

发布评论

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

评论(1

东走西顾 2025-01-13 06:00:03

没有预先打包的方法可以完成您所要求的操作。

一种方法可能是在将字符串写入输出缓冲区后在某处(可能在 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 the Render() method; if the flag is not set, then call base.Render(), otherwise don't. By skipping Render(), no additional output will be generated.

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