这是我的radTextBox
内心radDock
,我把它放在我的ParentPage
<telerik:RadDockZone ID="ZoneDescription" runat="server" BorderStyle="None" Width="600px">
<telerik:RadDock ID="DockDescription" runat="server" EnableDrag="false" EnableRoundedCorners="true"
Title="Itinerary Description" Width="600px" Skin="Vista" DefaultCommands="None">
<ContentTemplate>
<div style="padding-top: 5px;">
<telerik:RadTextBox ID="rtxtDescription" runat="server" Width="100%" TextMode="MultiLine">
</telerik:RadTextBox>
</div>
</ContentTemplate>
</telerik:RadDock>
</telerik:RadDockZone>
从我的孩子 Page 中,我得到了rtxtDescription
喜欢的文本值,
(((this.Parent.FindControl("ZoneDescription") as RadDockZone).
FindControl("DockDescription") as RadDock).
FindControl("rtxtDescription") as RadTextBox).Text;
和
(this.Parent.FindControl("rtxtDescription") as RadTextBox).Text;
但两者都不起作用,无法访问rtxtDescription
。
我该如何解决?提前致谢 :)