<select id="select1" name="Select1" style="height: 108px;width:100px;" runat="server" multiple="true">
            <option selected="selected" value="username">帐号</option>
            <option value="forbid">是否禁用</option>
            <option value="chinesename">姓名</option>
        </select>protected void ImageButton2_Click(object sender, ImageClickEventArgs e)
    {
        string k = "";
        for (int i = 0; i < this.select2.Items.Count; i++)
        {
            k += this.select2.Items[i].Text;
            Response.Write(k);
        }
    }
打印不出结果,不知道是不是遍历的方式写错了