| 
	Formatting the DataGrid Control
 
		Date: 08/15/05 
		(Asp Dot Net)    Keywords: no keywords
 I have a datagrid that returns information back two tables 
 
 table 1
 activityID Key unique
 Activity Nvarchar(50)
 
 table 2
 tbl2id  Key unique
 resortID  Int(4) linked to the resort table
 activityID int(4) linked to table1.activityID
 
 I can return the details but they write in the
 datagrid as
 
 activity1
 activity2
 activity3
 
 instead of as
 
 activity1 activity2 activity3
 
 what is the simplest way to format the datagrid for this layout
 i have to do this in a few places.
 
 Fuzzygoth
 Source: http://www.livejournal.com/community/aspdotnet/40151.html |