How to disable inline editing in GridView?

前端 未结 3 1960
孤街浪徒
孤街浪徒 2021-01-18 17:38

I am using ASP.NET C# Grid View, i want to edit data in control which display on same page. but when i wrote grid view row editing event it display text boxes in grid view r

3条回答
  •  自闭症患者
    2021-01-18 18:22

    I had the same problem, and by a little struggling I found out that the problem was on the CommandNames in my case.

    I changed Edit to edt and Delete to del, and since then the gridViewName_RowEditing event never fired again.

提交回复
热议问题