Hai Friends,
I have the following code for Dynamically Created Tables, I have created the panel in the webform.......
Dim tab5 As New Table
Dim row1 As New TableRow
Dim cell1 As New TableCell
cell1.Text = "Java"
row1.Cells.Add( cell1)
Dim cell2 As New TableCell
cell2.Text = "C++"
row1.Cells.Add( cell2)
tab5.Rows.Add(r ow1)
panel1.Controls .Add(tab5)
it works properly , But the Proplem is i cant give backcolor for Cell in this format #FFFFFFF,#66CCF F etc
when i give like this
cell2.Backcolor ="#FFFFFFF"
it shows as Error....
I have to give color in this Format #FFFFFFF,#66CCF F etc
Pl Help Me
Thanks in Advance........ ...........
Posted Date :- 29 Feb 2008
Davidson
I have the following code for Dynamically Created Tables, I have created the panel in the webform.......
Dim tab5 As New Table
Dim row1 As New TableRow
Dim cell1 As New TableCell
cell1.Text = "Java"
row1.Cells.Add( cell1)
Dim cell2 As New TableCell
cell2.Text = "C++"
row1.Cells.Add( cell2)
tab5.Rows.Add(r ow1)
panel1.Controls .Add(tab5)
it works properly , But the Proplem is i cant give backcolor for Cell in this format #FFFFFFF,#66CCF F etc
when i give like this
cell2.Backcolor ="#FFFFFFF"
it shows as Error....
I have to give color in this Format #FFFFFFF,#66CCF F etc
Pl Help Me
Thanks in Advance........ ...........
Posted Date :- 29 Feb 2008
Davidson
Comment