loadin Do…

一条只能往前走的路,叫时光.

首页 联系 订阅 管理

RadioButtonList1和CheckBoxList1
protected void Button1_Click(object sender, EventArgs e)
    {
        for (int i = 1; i < this.chkboxlist.Items.Count; i++)
        {
            if (this.chkboxlist.Items[i].Selected)
            {
                Response.Write(this.chkboxlist.Items[i].Text + "<br>");

           }

        }
    }

posted on 2006-12-29 23:09  i'am sl  阅读(161)  评论(0)    收藏  举报