2009-10-23 53 views

回答

1

如果你的控件的屬性是公共的,你可以在你的開始標記添加它,

<blah:MyRepeater ID="id1" runat="server" property1="234324" > 
1

您需要查看ParseChildren和PersistChildren屬性。

將ParseChlidren設置爲true並將PersistChildren設置爲false將導致處理器處理這些項並將它們作爲控件的屬性設置。

你控制的定義應該是這個樣子:

[ParseChildren(true)] 
[PersistChildren(false)] 
public class MyRepeater : Control 
{ 
} 
相關問題