Accessing the Controls in the Content Item of the C1WebTopicBar
To access any control, for example a Label control, in the ContentItem of the C1WebTopicBar, use the following code:
Dim lbl As Label = Me.C1WebTopicBar1.FindControl("Label1")
Response.Write(lbl.Text)
• C#
Label lbl = this.C1WebTopicBar1.FindControl("Label1");
Reponse.Write(lbl.Text);
|