namespace _3leaf_app { 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;
protected void Page_Init(object sender, EventArgs e) { // // CODEGEN: This call is required by the ASP+ Windows Form Designer. // InitializeComponent(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { RadioButton1.CheckedChanged += new System.EventHandler (this.RadioButton1_CheckedChanged); Button1.Click += new System.EventHandler (this.Button1_Click); RadioButton2.CheckedChanged += new System.EventHandler (this.RadioButton2_CheckedChanged); Button2.Click += new System.EventHandler (this.Button2_Click); this.Load += new System.EventHandler (this.Page_Load); }
public void Button2_Click (object sender, System.EventArgs e) { Label1.Text = "You want to search on last name"; }
public void Button1_Click (object sender, System.EventArgs e) { Label1.Text = "You want to search on first name"; }