Hi
I want to show multiple columns table using objectlist with columns
other than first column will also have links to say other pages. How
it can be done in asp .net 2.0 mobile web application
Any code sample/ link will be very helpful
Thanks
Arnie
Zoran Donev - 27 Aug 2007 17:10 GMT
Hi Arnie,
before you Bind your data you have to specify a string-list with the
column names.
e. g.
Dim dblayer As DataAccessLayer.DAL =
DataAccessLayer.DataProvider.GetDataAccess
oListLoc.DataSource =
dblayer.FindLocations(slistItems.Selection.ToString)
oListLoc.TableFields = "Rank;location;QtyOnHand;Whse"
oListLoc.DataBind()