come mai con questo codice
Dim t As New Data.DataTable("pollo")
Dim c As New Data.DataColumn
c.Caption = "nomecol"
c.ColumnName = "col1"
c.DataType = GetType(String)
t.Columns.Add(c)
Dim r As Data.DataRow = t.NewRow
r("col1") = "pollo"
t.Rows.Add(r)
grd.DataSource = t
se avvio il sito non vedo nulla in griglia?![]()
![]()
grazie.