blackice99
New Member
I have the following code:\[code\]Public Structure SomeRecords Public user_id As Integer Public user_name As StringEnd StructureSub ButtonClick(ByVal Source As Object, ByVal E As EventArgs) Dim TheRecords() As SomeRecords TheRecords = ProcessAction() For i As Integer = 0 To TheRecords.GetUpperBound(0) Console.Write(TheRecords(i).user_id) Console.Write(TheRecords(i).user_name) Next iEnd Sub\[/code\]It works fine. I now need to get this into some sort of .NET 1.1 Grid to display on a html page. How do I do that, instead of outputting the results to the \[code\]console\[/code\]?