怎么设置 默认的 .net版本
- 提问者网友:风月客
- 2021-03-02 00:54
- 五星知识达人网友:老鼠爱大米
- 2021-03-02 01:53
- 1楼网友:轻雾山林
- 2021-03-02 03:45
- 2楼网友:北方的南先生
- 2021-03-02 03:24
你如果是winform的话,那么:
1)在某个按钮的click事件写上一段代码(比如:messagebox.show("ok");)
2)选中整个form界面,然后把acceptbutton设置为那个按钮即可。默认光标聚集到那个按钮上,按回车enter即便执行那个事件了。
是webform的话:
【aspx代码】
<%@ page language="c#" autoeventwireup="true" codebehind="webform1.aspx.cs" inherits="webcsharp.webform1" %>
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" " http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns=" http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div> <asp:button id="button1" runat="server" text="button" /> </div> </form> </body> </html>
【cs后台代码】
namespace webcsharp { public partial class webform1 : system.web.ui.page { protected void page_load(object sender, eventargs e) { if (!ispostback) { button1.onclientclick = "alert('ok');"; button1.focus(); } } } }