zoukankan      html  css  js  c++  java
  • 非asp.net控件实现回发 button

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
    <HTML>
        
    <HEAD>
            
    <title>WebForm1</title>
            
    <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
            
    <meta name="CODE_LANGUAGE" Content="C#">
            
    <meta name="vs_defaultClientScript" content="JavaScript">
            
    <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
        
    </HEAD>
        
    <body MS_POSITIONING="GridLayout">
            
    <form id="Form1" method="post" runat="server">
                
    <asp:Button id="Button1" style="Z-INDEX: 101; LEFT: 320px; POSITION: absolute; TOP: 128px" runat="server"
                    Text
    ="Button"></asp:Button>
                
    <asp:Label id="Label1" style="Z-INDEX: 102; LEFT: 264px; POSITION: absolute; TOP: 56px" runat="server">Label</asp:Label>
                
    <asp:Button id="Button2" style="Z-INDEX: 103; LEFT: 232px; POSITION: absolute; TOP: 128px" runat="server"
                    Text
    ="Button"></asp:Button><INPUT style="Z-INDEX: 104; LEFT: 360px; POSITION: absolute; TOP: 208px" type="button"
                    value
    ="Button" id="button3" onclick="kk()">
                
    <input name="Button1" type="hidden" value="Button">
                
    <script>
            
    function kk()
            {
                
                window.setTimeout(
    "kk2()",1000);
                
            }
            
    function kk2()
            {
                Form1.submit();
            }
            
    </script>    
            
    </form>
            
        
    </body>
    </HTML>
    using System;
    using System.Collections;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Web;
    using System.Web.SessionState;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.HtmlControls;

    namespace Booksir.iAgent.WebApp
    {
        
    /// <summary>
        
    /// WebForm1 的摘要说明。
        
    /// </summary>
        public class WebForm1 : System.Web.UI.Page
        {
            
    protected System.Web.UI.WebControls.Label Label1;
            
    protected System.Web.UI.WebControls.Button Button2;
            
    protected System.Web.UI.WebControls.Button Button1;
        
            
    private void Page_Load(object sender, System.EventArgs e)
            {
                
    // 在此处放置用户代码以初始化页面
            }

            
    #region Web 窗体设计器生成的代码
            
    override protected void OnInit(EventArgs e)
            {
                
    //
                
    // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
                
    //
                InitializeComponent();
                
    base.OnInit(e);
            }
            
            
    /// <summary>
            
    /// 设计器支持所需的方法 - 不要使用代码编辑器修改
            
    /// 此方法的内容。
            
    /// </summary>
            private void InitializeComponent()
            {    
                
    this.Button1.Click += new System.EventHandler(this.Button1_Click);
                
    this.Load += new System.EventHandler(this.Page_Load);

            }
            
    #endregion

            
    private void Button1_Click(object sender, System.EventArgs e)
            {
                Label1.Text 
    = "";
            }
        }
    }
  • 相关阅读:
    2015306 白皎 《网络攻防》Exp5 MSF基础应用
    2015306 白皎 《网络攻防》Exp4 恶意代码分析
    2015306 白皎 《网络攻防》Exp3 免杀原理与实践
    2015306 白皎 《网络攻防》Exp1 进阶
    20155306 白皎 《网络攻防》 Exp2 后门原理与实践
    20155306 白皎 《网络攻防》Exp1 PC平台逆向破解——逆向与Bof基础
    2017-2018-1 20155306 《信息安全系统设计基础》嵌入式C语言———提取设置时分秒
    2017-2018-1 20155306 《信息安全系统设计基础》课程总结
    2017-2018-1 20155306 《信息安全系统设计基础》第十四周学习总结
    2017-2018-1 20155306 《信息安全系统设计基础》第13周学习总结
  • 原文地址:https://www.cnblogs.com/lovebanyi/p/334245.html
Copyright © 2011-2022 走看看