Link to home
Start Free TrialLog in
Avatar of mikha
mikhaFlag for United States of America

asked on

how to add Trade mark symbol in asp.net web forms website.

I have an <asp:label id="brandName" runat="server"/> in my aspx page in an asp.net website.

in the cs page, i populate the text of this label , depending on certain value .

   if( somecondition) {
       brandName.Text = "somebrandname" ;
   }
   else {
           brandName.Text = "someOtherName" ;
    }
   

I want to add trademark (TM) at the end of the brandname text .

how can i do this?
ASKER CERTIFIED SOLUTION
Avatar of David Johnson, CD
David Johnson, CD
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial