Inserting spaces between cells

janilol

New Member
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 / \[code\]TableCell tc=new TableCell();Label lb1= new Label();lb1.Text=stg1tc.Controls.Add(price);tc.Controls.Add(lb1);\[/code\]I want to insert some spaces or slash between cells on same row
 
Back
Top