是否可以實現自定義UserControl
或Control
,它將像PlaceHolder
那樣工作,但是使用我的邏輯?使用的實例:訪問UserControl的模板項目
<x:MyControl runat="server">
<Template>
<asp:TextBox runat="server" ID="MyTextBox" />
..... any custom code here ........
</Template>
</x:MyControl>
然後在後臺代碼:
MyTextBox.Text = "ABC";
我實現了試驗控制,但我無法訪問頁面嵌套層次ASP控制。錯誤是The name "MyTextBox" does not exist in the current context
。
@JohnSaunders哼哼,這是不正確的。 –