if i have 1000 records and i want to access 20 ata time
from SQL server, what will be the query?
Answer Posted / gowtham
you can also use Set Rowcount keyword to fetch the records
from sql server.Here is the query for that:
Set Rowcount 20
Select Empname from emp
Set RowCount 0
| Is This Answer Correct ? | 6 Yes | 8 No |
Post New Answer View All Answers
Explain the page lifecycle of an asp.net mvc? : asp.net mvc
How do I know asp.net mvc version? : Asp.Net MVC
What parameters can you pass in the url of the api?
How do active server pages work?
Can we have a web application running without web.config file?
What's the ASP.Net Application life cycle?
What kind of data can be stored in viewstate?
how to implement some securty aspect in our application i.e 1.cookie poisioning. 2.data encryption. 3.forcefull browsing 4.sql/code injection 5.securing web app by using web services ........my question is how to implement these thing in our application is this done by hard coding or by help of some tool
What is the syntax for datagrid and specifying columns?
What is considered a service provider?
What is the difference between mvc (model-view-controller) and mvp (model-view-presenter)? : asp.net mvc
Which dll handles the request of .aspx page?
i develop a web application and i gave security setting i.e autherization and athentication now it work properly on my local system , now question is ,is this security setting ie autherization and athentication which i gave in web.config will it be enough strong to secure my application on internet or i have to use some 3rd party tool or software to get security .if yes --how ? if no--what is the alternate?
Differentiate strong typing and weak typing
What is difference between web config and global asax?