Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How can I change the default English Edit/Delete links in a GridView to non-English links or image buttons?

0
10 Posted

How can I change the default English Edit/Delete links in a GridView to non-English links or image buttons?

0
10

You need to add a command field to your code. .. dbGridView.Columns.Clear .. Dim CommandField1 As New CommandField CommandField1.ButtonType = ButtonType.Image CommandField1.CancelImageUrl=”~\Images\but_cancel.gif” CommandField1.DeleteImageUrl=”~\Images\but_delete.gif” CommandField1.EditImageUrl=”~\Images\but_edit.gif” CommandField1.UpdateImageUrl=”~\Images\but_save.gif” CommandField1.ShowEditButton= True CommandField1.ShowDeleteButton= True dbGridView.Columns.Add(CommandField1) or Dim CommandField1 As New CommandField CommandField1.ButtonType = ButtonType.Link CommandField1.CancelText=”cancele” ‘取消 CommandField1.DeleteText=”borre” ‘删除 CommandField1.EditText=”redacte” ‘编辑 CommandField1.UpdateText=”guarde” ‘储蓄 CommandField1.ShowEditButton= True CommandField1.ShowDeleteButton= True dbGridView.Columns.Add(CommandField1) -33. I had the statement appAccess = Server.CreateObject(“Access.Application”) in my ASP .NET page. I got the “Exception Details: System.UnauthorizedAccessException: Access

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123