insarneexex
New Member
I cannot find documentation on the structure of aspx objects.<BR>I plan to write some generic routines to say pull out the fields used in a datagrid, e.g. MyDataGrid.field.count .field(3).name or .value or that sort of thing.<BR>A clue wehere to look please?<BR>Mike Pikehttp://msdn.microsoft.com/library/default.aspPhew, that was a quick reply. Will take a look, Many thanks.One step forward...but what am I missing so .NET does not know what a Column is please?<BR><BR>Compilation Error <BR>Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. <BR><BR>Compiler Error Message: BC30002: Type 'Column' is not defined.<BR><BR>Source Error:<BR>Line 33: MyDataGrid.DataBind()<BR>Line 34: <BR>Line 35: Dim c As Column<BR>Line 36: For Each c In MyDataGrid.Columns<BR>Line 37: response.write(c.DataField) <BR> etc<BR>Mike P<BR>Dim c as DataGridColumnMany thanks I have been looking for subsets of dataGrid rather than the superset that it is part of. I have learned a lot about MSDN from your prompting toda.<BR>