Hi all,
Want to know how to make two font style in one cell?
My code is in asp.net code behind not CSS.

I have a coding like this:
ASP.NET Code:
  1. Dim tblMain As new Table
  2. tblMain.ID = "tblMain"
  3. tblMain.EnableViewState = True
  4. tblMain.CellPadding = 0
  5. tblMain.CellSpacing = 0
  6. tblMain.BorderWidth = Unit.Point(0)
  7.  
  8. Dim dRow As TableRow
  9. Dim dCell As TableCell
  10.  
  11. dRow = New TableRow
  12. dCell = New TableCell
  13. dCell.BackColor = System.Drawing.Color.Lavender
  14. dCell.Text = "Customer Name"
  15. dRow.Cells.Add(dCell)

What I want here is I want to add "Triangle" at the end of "Customer Name" text. And for this triangle, I must use "Wingdings 3" font with character "p".
but "Customer Name" is in Tahoma font.

Can I add like this? or simply I just can't do like that?