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 is Nothing permission set in .Net
Explain the .net framework overview?
How do you create threading in .NET? What is the namespace for that?
Explain how viewstate is being formed and how it's stored on client in .net?
differance between checkbox and rediobutton in vb.net?
Explain the difference between garbage collections in .net 4.0 and earlier versions?
Explain the difference between the while and for loop. Provide a .net syntax for both loops?
What is a DLL?
What base class do all Web Forms inherit from?
What's singlecall activation mode used for in .net?
What are remotable objects in .NET Remoting?
What are the new 2.0 features useful for?