Checkboxlist e
değer ekleme şekilde görüldüğü gibi yapılır.
Aşağıdaki kodları hesapla butonuna yazınız.
protected void
Button1_Click(object sender, EventArgs e)
{
int i = 0;
int toplam = 0;
Label1.Text
= "";
Label2.Text
= "";
for (i = 0; i < CheckBoxList1.Items.Count; i++)
{
if (CheckBoxList1.Items[i].Selected)
{
Label1.Text += CheckBoxList1.Items[i] + "
= " + CheckBoxList1.Items[i].Value + "
; " ;
toplam += Convert.ToInt32(CheckBoxList1.Items[i].Value);
Label2.Text = toplam.ToString("C");
// C burda tl simgesini göstermek için kullanılmıştır
.
}
}
}
Hiç yorum yok:
Yorum Gönder