G
Guest
I created a USERCONTROL and i want to call a LABEL from an ASPX page.
The USERCONTROL is in the ASPX page
I have the label :-
Label lblstr = new Label();
And displaying using:-
lblstrp.Text=lblstr.Text;
<asp:label id="lblstrp" BorderColor="#ff3333" BorderStyle="Dashed"
BorderWidth="3" ForeColor="#0033cc"
Font-Size="25" Runat="server" Width="55%" BackColor="#ffff00"></asp:label>
I have a user control" header.ascx".
I want to place the usercontrol in the ASPX page using for example
<HEADER:topheader runat="server"></HEADER:topheader>
Any ideas?
The USERCONTROL is in the ASPX page
I have the label :-
Label lblstr = new Label();
And displaying using:-
lblstrp.Text=lblstr.Text;
<asp:label id="lblstrp" BorderColor="#ff3333" BorderStyle="Dashed"
BorderWidth="3" ForeColor="#0033cc"
Font-Size="25" Runat="server" Width="55%" BackColor="#ffff00"></asp:label>
I have a user control" header.ascx".
I want to place the usercontrol in the ASPX page using for example
<HEADER:topheader runat="server"></HEADER:topheader>
Any ideas?