
protected void Button1_Click(object sender, EventArgs e)
{
string msg = "Seçimleriniz :<br />";
if (bolum.Items[0].Selected)
{
msg = msg + bolum.Items[0].Text + "<br />";
}
if (bolum.Items[1].Selected)
{
msg = msg + bolum.Items[1].Text + "<br />";
}
if (bolum.Items[2].Selected)
{
msg = msg + bolum.Items[2].Text + "<br />";
}
if (bolum.Items[3].Selected)
{
msg = msg + bolum.Items[3].Text + "<br />";
}
if (bolum.Items[4].Selected)
{
msg = msg + bolum.Items[4].Text + "<br />";
}
if (bolum.Items[5].Selected)
{
msg = msg + bolum.Items[5].Text + "<br />";
}
Mesaj.Text = msg;
}
Hiç yorum yok:
Yorum Gönder