protected void ButtonAra_Click(object sender, EventArgs e) { TxtAdSoyad.Text = string.Empty; int aboneNo = int.Parse(AboneNo.Value); var result = AboneRepository.GetViewAbone(aboneNo); if (result != null) { TxtAdSoyad.Text = result.AboneAdSoyad; DropDownListAboneTipi.ClearSelection(); DropDownListAboneTipi.Items.FindByValue(result.AboneTuruAd).Selected = true; LabelAdSoyad.Visible = true; TxtAdSoyad.Visible = true; LabelTip.Visible = true; DropDownListAboneTipi.Visible = true; ButtonKaydet.Visible = true; } else { ScriptManager.RegisterClientScriptBlock(this, GetType(), "alertMessage", "alert('Aradığınız abone bulunamamıştır.')", true); } }
protected void ButtonAra_Click(object sender, EventArgs e) { TxtAdSoyad.Text = string.Empty; TextBoxAboneTipi.Text = string.Empty; int aboneNo = int.Parse(TxtAboneNo.Text); var result = AboneRepository.GetViewAbone(aboneNo); if (result != null) { TxtAdSoyad.Text = result.AboneAdSoyad; TextBoxAboneTipi.Text = result.AboneTuruAd; LabelAdSoyad.Visible = true; TxtAdSoyad.Visible = true; LabelTip.Visible = true; TextBoxAboneTipi.Visible = true; ButtonSil.Visible = true; } else { ScriptManager.RegisterClientScriptBlock(this, GetType(), "alertMessage", "alert('Aradığınız abone bulunamamıştır.')", true); } }