How to manage pagination in a page?
Answers were Sorted based on User's Feedback
Answer / shiva
set allowpaging to true and you have to write some coding
in pageindexchanging event
GridView1.PageIndex = e.NewPageIndex;
binddata();
Is This Answer Correct ? | 10 Yes | 0 No |
Using pagination option in DataGrid control. We have to set
the number of records for a page, then it takes care of
pagination by itself.
Is This Answer Correct ? | 4 Yes | 2 No |
What is the difference between a multi-layer and multi-tier applications?
Why session is more secure than cookies?
What is a multilingual website?
Distinguish between Server-side and Client-side code?
Why session management is required?
Explain diff between dataset and datareader?
After capturing the SelectIndexChanged event for a ListBox Control, you find that the event handler doesn?t execute. What could be the problem be? a) The AutoEventWireup attribute is set to False b) The AutomaticPostBack attribute is set to False c) The codebehind module is not properly compiled d) The ListBox must be defined WithEvents.
What is session mode in asp.net?
You are planning the deployment of an ASP.NET application. The application uses a Visual Studio .NET component named DataAccess that will be shared with other applications on your Web server. You are using Visual Studio .NET to create a Windows Installer package. You need to deploy DataAccess and the ASP.NET application so that they can be uninstalled later of necessary. What should you do? A . Create a setup project for DataAccess. Add the ASP.NET application in a custom action. B . Create a setup project for the ASP.NET application. Create another setup project for DataAccess. C . Create a Web setup project for the ASP.NET application. Add a project output for DataAccess. D . Create a Web setup project for the ASP.NET application. Add a merge module for DataAccess.
what is shared assembly asp net
Why does a user need nothing more than a Web browser to view ASP.NET pages?
What are the advantages and limitations of query string?