编辑过程中ASP.NET自动添加行的GridView的,按Enter键

问题描述 投票:0回答:1

在文本框中输入更新值后(比如价格),如果我按Enter键,我看到一个新行的最后自动添加值0或细胞空。

如何防止这种自动加入一行发生的?

asp.net gridview
1个回答
0
投票

我寻找其他的问题,可以帮助你。他们认为这样做:

myGridView.Attributes.Add("onkeydown", "if(event.keyCode==13)return false;");

我离开你的老问题链接:I want to prevent ASP.NET GridView from reacting to the enter button

© www.soinside.com 2019 - 2024. All rights reserved.