CheckBox - RadioButton Uygulamaları
Uygulama 1:Radio Butonun Seçili Olup Olmadığını Kontrol Etme.
RadioButton1.Checked komutu ile seçili olduğunu kontrol ediyoruz.
Standart Kontroller Sayfasına Geri Dön
Uygulama 2:CheckBox Nesnesinin Onaylı Olup Olmadığını Kontrol Etme.
CheckBox1.Checked komutu ile seçili olduğunu kontrol ediyoruz.
Standart Kontroller Sayfasına Geri Dön
Uygulama 3:RadioButtonGroup Nesnesinde Seçiliyi Bulma.
RadioButtonList1.SelectedIndex komutu ile seçiliyi kontrol ediyoruz.
Standart Kontroller Sayfasına Geri Dön
Uygulama 4:CheckBoxList Nesnesini Kontrol Etme.
CheckBoxList1.Items[i].Selected komutu ile seçili olduğunu kontrol ediyoruz.
protected void Button1_Click(object sender, EventArgs e)
{
Label1.Text = "";
for (int i = 0; i < CheckBoxList1.Items.Count; i++)
{
if (CheckBoxList1.Items[i].Selected)
{
Label1.Text=Label1.Text+CheckBoxList1.Items[i].Text;
}
}
}
Standart Kontroller Sayfasına Geri Dön
Uygulama 5:Okul ve Medeni hal kontrol etme
.
protected void Button1_Click(object sender, EventArgs e)
{
string okul, hal;
okul = RadioButtonList1.SelectedItem.Text;
if (RadioButton1.Checked==true)
{
hal = "evli";
}
else if(RadioButton2.Checked==true)
{
hal = "bekar";
}
else
{
hal = "seçim yapılmadı";
}
Label1.Text = "Okul durumu: " + okul + " Medeni Hal: " + hal;
}
Standart Kontroller Sayfasına Geri Dön