我有一个服务器控件,该控件具有一个作为InnerProperty的PlaceHolder.在渲染时的类中,我需要获取应该在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.
}
}
有任何想法吗?提前致谢.
解决方法:
我刚刚找到了解决方案.由于我使用PlaceHolder对象的上下文,我没有看到render方法.例如,我试图将其用作值并将其分配给这样的字符串:
string s = this.PlaceHolderName...
因为它位于等号的右侧,所以Intellisense并未向我显示render方法.这是使用HtmlTextWriter渲染PlaceHolder的方法:
StringWriter sw = new StringWriter();
HtmlTextWriter htw = new HtmlTextWriter(sw);
this.PlaceHolderName.RenderControl(htw);
string s = sw.ToString();