在本网站和其他一些网站上,有关于创建一个asp.net用户控件的主题,该控件具有内容占位符或内容区域,因此您可以在自己的用户控件中放置任何您喜欢的内容。它会是这样的:
<someprefix:yourcontrolname runat="server">
<content>
//plain text or complicated control can be here
</content>
</someprefix:yourcontrolname>
但是如何创建一个具有多个内容区域的区域,如下所示:
<someprefix:yourcontrolname runat="server">
<content1>
//plain text or complicated control can be here
</content1>
<content2>
//plain text or complicated control can be here
</content2>
</someprefix:yourcontrolname>