Forum: ASP
Jun 19th, 2005, 12:11 PM
|
|
Replies: 1
Views: 274
Pls. be more specific.
Is this question about classic ASP or ASP.Net?
In classic ASP everything is presented as an variant type.
|
Forum: ASP
Jun 19th, 2005, 11:46 AM
|
|
Replies: 1
Views: 867
ItemArray problem
ItemArray in DataTable serves the different purpose.
To change a column value in DataTable use the following technique:
DataTable dt = (DataTable)dataGrid1.DataSource;
DataRow rCurrent =...
|