For write text in asp:Label , set .Text Property of Label.
From HTML View you can set like following way.
<asp:Label ID="lblProductName" runat="server" Text="TV"></asp:Label>
From Code Behind you can set like following way.
i.e : Label Id :- lblProductName
vb.net code : lblProductName.Text="TV"
c#.net code : lblProductName.Text="TV";
From HTML View you can set like following way.
<asp:Label ID="lblProductName" runat="server" Text="TV"></asp:Label>
From Code Behind you can set like following way.
i.e : Label Id :- lblProductName
vb.net code : lblProductName.Text="TV"
c#.net code : lblProductName.Text="TV";
No comments:
Post a Comment