Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

if i have 1000 records and i want to access 20 ata time
from SQL server, what will be the query?

Answer Posted / sunny

Assume EMP is my Table where 1000 Records there. We retrive
20 top record from database through by following c# code.
}
sqlconection cn = new sqlconnection(@"Conection string...");
dataset ds = new dataset();
SqldataAdapter da = new SqldataAdapter("select top 20 *
from Emp", cn);
da.fill(ds);
Gridview1.datasource = ds.table[0];
Gridview1.databind();
}

Is This Answer Correct ?    2 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the difference between inline and code behind - which is best in?

1056


Which is the parent class of the ASP.NET server control?

1105


What is the maximum number of classes that can be contained in one dll file?

1259


What are the various types of cookies in asp.net?

1076


Difference between DataGid and Girdview? Difference b/w .Net 2.0, 3.0 and 3.5 ? Diff b/w dispose & Finialize Methods?

2509


What are the events in a page life cycle?

992


What is asp.net futures?

1143


What role “#&&” plays in a querysting?

1061


How asp.net mvc differs from asp.net web forms? : asp.net mvc

1162


How do you declare delegates and are delegates and events one and the same and explain how do you declare delegates and invoke them ?

4278


Is asp.net and .net the same?

1118


What is bson in web api?

1083


How can you display all validation messages in one control?

1040


How do we assign page-specific attributes?

1198


Where can I get information on cookies in asp.net?

1059