What is PageIndex in DataGrid?What is the event used in the
Datagrid for while moving from one page to another page in
the Grid?write code for it
Answers were Sorted based on User's Feedback
Answer / gourav
Page index is to split the DataGrid in number of pages.
Code for paging is write in pageindexchanging event
gridview1.pageindex=e.newpageindex;
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / judy prasheela
protected void DataGrid1_PageIndexChanged(object source, DataGridPageChangedEventArgs e)
{
DataGrid1.CurrentPageIndex = e.NewPageIndex;
DataGrid1.DataBind();
}
| Is This Answer Correct ? | 1 Yes | 0 No |
What are nullable types in .NET
1 Answers TryTechnicals Pvt Ltd,
in hibernate, what is dirty reading?
What is .net3.5?
Define satelite assembly?
Write Code for DataSet,Datareader,and by deleting the button gridview should be empty?
Differences between dll and exe?
Difference between machine.config and web.config?
How to load the contents of an xml file into an xmldocument object?
What is the use of common language runtime?
Explain the purpose of Remoting in .NET?
1 Answers Petranics Solutions,
Elements of CAS
What is Event - Delegate? clear syntax for writing a event delegate