i have one gridview contains edititemtemplate(which
contains update and cancel buttons) and i have one item
template (contains edit button)
i want the code for update and cancelbuttons in edit item
template and i want the code for edit button in
itemtemplate. please help me

Answers were Sorted based on User's Feedback



i have one gridview contains edititemtemplate(which contains update and cancel buttons) and i have..

Answer / gagan

Row Command Event of Grid view to be fired, where you can
call the edit, update, insert quires

Is This Answer Correct ?    2 Yes 1 No

i have one gridview contains edititemtemplate(which contains update and cancel buttons) and i have..

Answer / akash

I can help you Can you explain your question in detail.So
that i can give the perfect Answer..Mail me on
akash_1311@yahoo.co.in

Is This Answer Correct ?    3 Yes 3 No

i have one gridview contains edititemtemplate(which contains update and cancel buttons) and i have..

Answer / suneet sharma

I can help you Can you explain your question in detail.So
that i can give the perfect Answer..Mail me on
suneetsharma@gmai.com

Is This Answer Correct ?    2 Yes 2 No

i have one gridview contains edititemtemplate(which contains update and cancel buttons) and i have..

Answer / vishwaraj malik

write the following code

protected void GVAdvrtDetail_RowEditing(object sender,
GridViewEditEventArgs e)
{
GVAdvrtDetail.EditIndex = e.NewEditIndex;

}
protected void GVAdvrtDetail_RowCancelingEdit(object
sender, GridViewCancelEditEventArgs e)
{
GVAdvrtDetail.EditIndex = -1;
}

protected void GVAdvrtDetail_RowUpdating(object sender,
GridViewUpdateEventArgs e)
{

}


use findcontrol to update the recoed..

Is This Answer Correct ?    2 Yes 5 No

Post New Answer

More ASP.NET Interview Questions

About Windows/Forms Authentication

1 Answers  


Hi! Could any 1 please suggest me a free practice online exam for asp.net exams.. thanks

1 Answers  


Explain the different types of assemblies?

0 Answers  


Is asp.net different from asp? If yes, explain how?

0 Answers  


What is localhost in asp.net?

0 Answers  






What is ISAPI?

2 Answers   IBM,


Will the asp.net validators run in server side or client side? How do you do client-side validation in .net?

0 Answers  


How can you debug your.net application?

0 Answers  


After capturing the SelectIndexChanged event for a ListBox Control, you find that the event handler doesn?t execute. What could be the problem be? a) The AutoEventWireup attribute is set to False b) The AutomaticPostBack attribute is set to False c) The codebehind module is not properly compiled d) The ListBox must be defined WithEvents.

2 Answers   Syntax Softtech,


what is dumpbin.exe?

1 Answers  


What namespace does the Web page belong in the .NET Framework class hierarchy?

3 Answers   Siebel Systems,


What is sdlc process?

0 Answers  


Categories