Hi everyone
I made a project, and created a namespace
Namespace DataTools
Public Class DataViewer
...
...
...
...
One of my functions returns a data grid
Public Function getGrid()
...
...
Return MyDataGrid
End Function
On my aspx file
I have
Dim Dtview As New DataViewer(SortField, rptID)
ItemReportDG = Dtview.getGrid()
But the datagrid doesn't show up when I load the page. Did i do something seriously wrong?
thanks
I made a project, and created a namespace
Namespace DataTools
Public Class DataViewer
...
...
...
...
One of my functions returns a data grid
Public Function getGrid()
...
...
Return MyDataGrid
End Function
On my aspx file
I have
Dim Dtview As New DataViewer(SortField, rptID)
ItemReportDG = Dtview.getGrid()
But the datagrid doesn't show up when I load the page. Did i do something seriously wrong?
thanks