Hi there.
I am dynamically creating a table within my ASP.Net (C#) page and adding this to an ASP Panel, using the command
I can get everything working correctly but my table headings are in normal case, whereas I would like them in bold font.
An example of one of my commands to add a header column is as follows:
The question hence is how do I set the text "Select" above so that it is bold please? I have a feeling this is very easy to do but for some reason it is not registering in my brain at the moment..!
Thank you.
Mark :o)
I am dynamically creating a table within my ASP.Net (C#) page and adding this to an ASP Panel, using the command
Code:
PanelBlocksSecurity.Controls.Add(dTable);
An example of one of my commands to add a header column is as follows:
Code:
HtmlTableCell headerCell2 = new HtmlTableCell(); headerCell2.InnerText = "Select"; headerRow.Controls.Add(headerCell2);
Thank you.
Mark :o)
Comment