Participant
1111 Points
363 Posts
Feb 22, 2010 04:42 AM|vijjendra|LINK
Hi,
You can use as follows:
Your ASPX page like:
<head runat="server"> </head> <body> <form id="form1" runat="server"> <div> <asp:Label ID="Label1" runat="server"></asp:Label> </div> </form> </body> </html>
protected void Page_Load(object sender, EventArgs e) { Label1.Text = "I m .Net <font color='red'>developer.</font>"; }
Participant
1111 Points
363 Posts
Re: Regarding assign color to one of the string of Label text?
Feb 22, 2010 04:42 AM|vijjendra|LINK
Hi,
You can use as follows:
Your ASPX page like:
Your CS Code like:
Vijendra Singh