3

我有一个服务器控件,它有一个 PlaceHolder,它是一个 InnerProperty。在渲染时的类中,我需要获取应该在 PlaceHolder 中的文本/HTML 内容。这是前端代码的示例:

<tagPrefix:TagName runat="server">
    <PlaceHolderName>
      Here is some sample text!
    </PlaceHolderName>
</tagPrefix:TagName>

这一切都很好,除了我不知道如何检索内容。我没有看到 PlaceHolder 类公开的任何渲染方法。这是服务器控件的代码。

public class TagName : CompositeControl
{
    [TemplateContainer(typeof(PlaceHolder))]
    [PersistenceMode(PersistenceMode.InnerProperty)]
    public PlaceHolder PlaceHolderName { get; set; }

    protected override void RenderContents(HtmlTextWriter writer)
    {
       // i want to retrieve the contents of the place holder here to 
       // send the output of the custom control.
    }        
}

有任何想法吗?提前致谢。

4

2 回答 2

4

我刚刚找到了解决方案。由于我使用 PlaceHolder 对象的上下文,我没有看到渲染方法。例如,我试图将它用作一个值并将其分配给一个字符串,如下所示:

string s = this.PlaceHolderName...

因为它位于 equals Intellisense 的右侧,所以没有向我显示渲染方法。以下是使用 HtmlTextWriter 渲染 PlaceHolder 的方法:

   StringWriter sw = new StringWriter();
   HtmlTextWriter htw = new HtmlTextWriter(sw);
   this.PlaceHolderName.RenderControl(htw);
   string s = sw.ToString();
于 2010-12-23T16:55:45.640 回答
1

将此作为第二个答案发布,以便我可以使用代码格式。这是一个使用泛型的更新方法,还使用“使用”功能自动处理文本/html 编写器。

    private static string RenderControl<T>(T c) where T : Control, new()
    {
        // get the text for the control
        using (StringWriter sw = new StringWriter())
        using (HtmlTextWriter htw = new HtmlTextWriter(sw))
        {
            c.RenderControl(htw);
            return sw.ToString();
        }
    }
于 2010-12-23T18:06:15.587 回答