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 the features of dot net?
What does .net stand for?
What is the use of trace utility?
Define code access security (cas)?
What is Datatype Conversion in Vb.net?
How com+ related to the dna architecture?
How we can achieve Connection pooling in .Net?
What is reflection and what is it for?
Explain how to load the contents of an xml file into an xmldocument object?
What are the security policy levels in .Net
How is .net able to support a lot of languages?
Is it true that objects don't always get destroyed immediately when the last reference goes away?