Default.aspx
<html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server">
<title>无标题页</title> </head> <body>
<form id="form1" runat="server">
<div>
可供选择的水果:
<asp:CheckBoxList ID="CheckBoxList1" runat="server" AutoPostBack="True"
Width="180px">
</asp:CheckBoxList></div>
</form> </body> </html>
绑定数据到ListBox控件
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
//数据生成
DataSet ds = new DataSet();
ds.Tables.Add("stu");
ds.Tables["stu"].Columns.Add("stuNo", typeof