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
Answer Posted / judy prasheela
protected void DataGrid1_PageIndexChanged(object source, DataGridPageChangedEventArgs e)
{
DataGrid1.CurrentPageIndex = e.NewPageIndex;
DataGrid1.DataBind();
}
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Describe the compilation process for .net code?
How to instantiate a delegate?
In code behind class, name the type of code found. Is it the server side code or client side code?
What is an anonymous method and how is it different from a lambda expression?
What are nullable types in .NET
What are the new thee features of com+ services, which are not there in com (mts)?
What is close method? How its different from finalize and dispose?
What's the problem with .net generics?
How can I find out what the garbage collector is doing?
What are the differences between com architecture and.net architecture?
Explain what is a delegate?
What do the terms “boxing” and “unboxing” mean?
Explain the difference between static page and dynamic page?
What is difference between .net and .net core?
Explain the code behind wors and contrast that using the inline style.