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 .net environment?
If I am writing in a language like vb or c++, what are the procedures to be followed to support .net?
what is the default security setting in .net?
How will u load dynamic assembly? How will create assemblies at run time?
Resource Files: How to use the resource files, how to know which language to use?
Writing a Stored procedure to insert the values into a table
explain the states of a window service application?
Do you know what is linq?
Explaing your project.
What base class do all Web Forms inherit from?
Explain what is an application domain?
Please explain what is reflection and what is it for?