csharp webform Button控件OnClick,OnClientClick事件

该博客为转载内容,涉及C#和JavaScript等信息技术领域知识,原文链接为https://www.cnblogs.com/geovindu/archive/2010/08/26/1809199.html 。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

ExpandedBlockStart.gif代码
 1 <html xmlns="http://www.w3.org/1999/xhtml" >
 2 <head runat="server">
 3     <title>csharp webform Button控件OnClick,OnClientClick事件</title>
 4     <script language="javascript" type="text/javascript">
 5 function confirmthis()
 6 {
 7 if(confirm("Do you want to do a server trip?"))
 8 {
 9 return true;
10 }
11 else
12 {
13 return false;
14 }
15 }
16 </script>
17 </head>
18 <body>
19     <form id="form1" runat="server">
20     <div>
21         <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
22      <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Button"  OnClientClick="return confirm('審批後將不能再修改,您確認審批嗎?')"/>
23         <br />
24         <asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
25         <asp:Button ID="Button2" runat="server" OnClick="Button2_Click" Text="Button" OnClientClick="return confirmthis();"/></div>
26     </form>
27 </body>
28 </html>
29 
30  
31 
32     public partial class button : System.Web.UI.Page
33     {
34         protected void Page_Load(object sender, EventArgs e)
35         {
36 
37         }
38         protected void Button1_Click(object sender, EventArgs e)
39         {
40             this.TextBox1.Text = "click me";
41         }
42 
43         protected void Button2_Click(object sender, EventArgs e)
44         {
45             this.TextBox2.Text = "Do you want to do a server trip";
46         }
47     }
48 

 

转载于:https://www.cnblogs.com/geovindu/archive/2010/08/26/1809199.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值