在我的页面ASP.net页面中,我正在使用这样的自定义控件:
<MyNamespace:MyControl runat="server" ID="myControl">
<contenttemplate>
This is the text I want to use
</contenttemplate>
</MyNamespace:MyControl>
在控件的c#代码中,如何获取包含<contentemplate>
标记之间文本的字符串(例如“这是我要使用的文本”)?
你能给我代码吗?
谢谢!