thevan
thevan

Reputation: 10364

Is it possible to change the text of Update button in the Asp.Net GridView?

When we give "ShowEditButton = true" in Command Field column in a GridView. It shows the Update and Cancel button. Is it possible to change the text of "Update" button? Instead of Update and Cancel, I want to display as "Confirm and Cancel". Is it possible?

Upvotes: 1

Views: 4775

Answers (1)

Bazzz
Bazzz

Reputation: 26922

Yes, in the CommandField.

Look here: http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.commandfield.edittext.aspx

Upvotes: 2

Related Questions