2
Answers

any good tutorials for Visual Studio 2005 web sites

chris lamb

chris lamb

19y
3.2k
1

I am in need of a good tutorial or tutor over msn chat or somthing for a beginer in Visual studio 2005 in all topics if possible explain it to me like i was a retard. I dont need it done immediatly or really any time soon i am hoping to sart a career in web design and wanted to get the jump start.
Any help would be greatly appreciated.

Thank you for yor time
Sincerly,
  Chris

Answers (2)
0
Suthish Nair

Suthish Nair

NA 31.7k 4.6m 14y

Use Linq to datatable, refer sample.
DataTable dtMain = new DataTable();
DataTable dt1 = new DataTable();
//bind datatable
var rows1_10 = from item in dt1.AsEnumerable()
     select item;
var top1_10 = rows1_10.Take(10);
//do a for-loop and insert into dtMain
DataTable dt2 = new DataTable();
//bind datatable
var rows2_10 = from item in dt2.AsEnumerable()
     select item;
var top2_10 = rows2_10.Take(10);
//do a for-loop and insert into dtMain
0
Rajesh Kumar

Rajesh Kumar

NA 66 0 14y

Hi Purna,
Try to create  two temp datasets with a datatable containing 10 rows. and bind these two dataset to gridviews seperately.
Thanks
Rajesh