protected void Page_Load(object sender, EventArgs e) { if (this.IsPostBack == false) { TxtCountryName.Focus(); this.Form.DefaultButton = BtnGo.UniqueID; LblMessage.Text = Request.QueryString["Message"]; ShowGridView(); } }
protected void LnkBtnCloseCountry_Click(object sender, EventArgs e) { EditCountryModal.Visible = false; this.Form.DefaultButton = BtnGo.UniqueID; TxtCountryName.Focus(); }