In the ListView control definition, you should define a method which will be invoked when the event ItemInserting occurs. For example:
Code:
OnItemInserting="InsertList"
And the InsertList method definition will look like as follows:
Code:
protected void InsertList(Object sender, ListViewInsertEventArgs e)
{
ListView1.InsertItemPosition = InsertItemPosition.None;
} ListView has an InsertItemTemplate Template in which we can specify the controls that we need to show during the insert mode.
__________________
S.VinothkumaR
Behind me is infinite power,
Before me is Endless Possibility,
Around me is Boundless Opportunity,
Why should I fear!