How do you get records number from 5 to 15 from a dataset of
100 records?

Answers were Sorted based on User's Feedback



How do you get records number from 5 to 15 from a dataset of 100 records?..

Answer / guest

OleDbConnection1.Open()
OleDbDataAdapter1.Fill(DataSet21, 5, 15, “tab”)

Is This Answer Correct ?    8 Yes 3 No

How do you get records number from 5 to 15 from a dataset of 100 records?..

Answer / ramakrishnan t

sqldataadapterobj.Fill(datasetobj,5,11,"tablename");

Is This Answer Correct ?    4 Yes 2 No

How do you get records number from 5 to 15 from a dataset of 100 records?..

Answer / appu

sqlDataAdapter da=new sqlDataAdapter ();
Da.fill(Dataset dataset,int StartRecord,int MaxRecords,string srcTable(TableName)

Is This Answer Correct ?    3 Yes 1 No

Post New Answer

More ASP.NET Interview Questions

Is asp.net and .net same?

0 Answers  


How to convert a string into an Integer in ASP.net?

12 Answers  


how to pass session value one url to another url.my code if session("user")="abc" then response.redirect("www.abc.com\client\home.aspx") end if. so how to pass value of session in browser url

1 Answers  


Explain how is a property designated as read-only?

0 Answers  


In asp.net, if a webpage seems too slow to load completely in th ebrowser. In this case what are the checkings or actions you will take to rectify the slowness or which are the factors related to this issue? How we can trace it?

3 Answers  






List some of the important session state modes of asp.net.

0 Answers  


What method must be overridden in a custom control? a) The Paint() method b) The Control_Build() method c) The Render() method d) The default constructor

1 Answers   Icertis, Microsoft, Syntax Softtech,


Which protocol is used in a web api?

0 Answers  


Difference between application and session ?

12 Answers   DataPoint, Satyam,


How does session state work in asp.net?

0 Answers  


What are the 3 types of web?

0 Answers  


Describe the difference between inline and code behind - which is best in a loosely coupled solution Tightly coupled - INLINE

2 Answers  


Categories