How to change the name of AutoGenerated Edit button on GridView Programatically

Pumpemetipt

New Member
I want to Rename the Edit & Delete buttons of my Grid View in .aspx file.I didn't statically created the buttons from the Design view, instead I've created the buttons programatically on code behind file like this,
gw.AutoGenerateEditButton = true;
gw.AutoGenerateDeleteButton = true;
There is no < TemplateField > neither any < ButtonField > in my GridView.Now, How can I change the name of my Edit or delete button from the code behind file?
(P.S: Sorry for my English)
 
Back
Top