I have following code that inserts two cells in a row. It works fine however these two values do not have any spaces in between. So I am trying to figure out how to add couple of spaces in between cells or just add a slash /
TableCell tc=new TableCell();
Label lb1= new Label();
lb1.Text=stg1
tc.Controls.Add(price);
tc.Controls.Add(lb1);
I want to insert some spaces or slash between cells on same row
Maybe you should add columns to the table as a whole.
Otherwise add padding to the label (in one of many ways):