c# – 如何在输出之前修改整个ASP.NET页面内容?

我有一个页面上有一堆用户控件.我想能够直接在我的代码中被替换的内容中有“宏”或“占位符”.这不是很重要,但我使用Ektron作为我的CMS.

在发送到客户端之前,是否有任何页面事件可以挂接到整个呈现页面内容上的字符串替换?

UPDATE

这是我目前用来完成这个的代码

protected override void Render(HtmlTextWriter writer)
{
    string content = string.Empty;

    using (var stringWriter = new StringWriter())
    using (var htmlWriter = new HtmlTextWriter(stringWriter))
    {
        // render the current page content to our temp writer
        base.Render(htmlWriter);
        htmlWriter.Close();

        // get the content
        content = stringWriter.ToString();
    }

    // replace our placeholders
    string newContent = content.Replace("$placeholder1$","placeholder1 data").Replace("$placeholder2$","placeholder2 data");

    // write the new html to the page
    writer.Write(newContent);
}

解决方法

你试过覆盖渲染方法吗?
protected override void Render(HtmlTextWriter writer)
{
   StringBuilder htmlString = new StringBuilder(); // this will hold the string
   StringWriter stringWriter = new StringWriter(htmlString);
   HtmlTextWriter tmpWriter = new HtmlTextWriter(stringWriter);
   Page.Render(tmpWriter);
   writer.Flush();

   writer.Write(DoReplaceLogic(htmlString.ToString()););
}

相关文章

目录简介使用JS互操作使用ClipLazor库创建项目使用方法简单测...
目录简介快速入门安装 NuGet 包实体类User数据库类DbFactory...
本文实现一个简单的配置类,原理比较简单,适用于一些小型项...
C#中Description特性主要用于枚举和属性,方法比较简单,记录...
[TOC] # 原理简介 本文参考[C#/WPF/WinForm/程序实现软件开机...
目录简介获取 HTML 文档解析 HTML 文档测试补充:使用 CSS 选...