M
Mike Fellows
Help,
Im used to vb.net and have been given a web project to do
i have a datagrid which i populate with data (surprisngly)
one of the columns in my datagrid contains a long string
in vb.net i used to do the following:
Dim ts As New DataGridTableStyle()
ts.MappingName = "Table"
DataGrid1.TableStyles.Clear()
DataGrid1.TableStyles.Add(ts)
Me.DataGrid1.DataSource = ds.Tables(0)
ts.GridColumnStyles(0).Width = 110
ts.GridColumnStyles(1).Width = 90
ts.GridColumnStyles(2).Width = 100
ts.GridColumnStyles(3).Width = 90
ts.GridColumnStyles(4).Width = 250
since datagridtablestyles are not usable in asp.net what do i do?
i need this in vb as it runs client side not from the asp
Thanks
Mike Fellows
Im used to vb.net and have been given a web project to do
i have a datagrid which i populate with data (surprisngly)
one of the columns in my datagrid contains a long string
in vb.net i used to do the following:
Dim ts As New DataGridTableStyle()
ts.MappingName = "Table"
DataGrid1.TableStyles.Clear()
DataGrid1.TableStyles.Add(ts)
Me.DataGrid1.DataSource = ds.Tables(0)
ts.GridColumnStyles(0).Width = 110
ts.GridColumnStyles(1).Width = 90
ts.GridColumnStyles(2).Width = 100
ts.GridColumnStyles(3).Width = 90
ts.GridColumnStyles(4).Width = 250
since datagridtablestyles are not usable in asp.net what do i do?
i need this in vb as it runs client side not from the asp
Thanks
Mike Fellows