Read this article in your language IT | EN | DE | ES
How to programmatically access a control that lies within a within a wizardview header template (or any template header I would imagine) in C#
<asp:Wizard ID="wContent" runat="server" ActiveStepIndex="0">
<HeaderTemplate>
<asp:Label ID="lblHeader" runat="server" Text="Text Here" /><br />
<br />
</HeaderTemplate>
</asp:Wizard>
(instance name of the wizard).FindControl("HeaderContainer").FindControl("instance name of the control") as type of control).Text = "Hello World!";
c109fff7-6525-4b3e-b99e-aa23f26e8548|0|.0
Code Snippets, C#, Programming