Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在没有任何默认按钮的页面中按回车键时,该页面将回发到起始页面,这很奇怪,因为它必须回发到我按回车键而不是起始页面的同一页面中。我该如何解决?
由于 ASP.NET WebForms 通常form会在网站的整个内容周围包裹一个标签,我猜你的内容的开头Button或ImageButton附近有一个链接到主页的内容。
form
Button
ImageButton
也许网站徽标是一个ImageButton带有服务器端事件的重定向到主页?
如果没有指定默认按钮,当按下键盘输入按钮时,页面将操作表单中的第一个按钮。
短期解决方案:确保您拥有的Panel每个DefaultButton“表格”都有一个。
Panel
DefaultButton
长期解决方案:远离 WebForms :)