后台
public partial class WebForm16 : System.Web.UI.Page
{
public int[] s = { 1, 1, 2, 2 };
protected void Page_Load(object sender, EventArgs e)
{
ListBox1.DataBind();
}
前台
<asp:ListBox ID="ListBox1" runat="server" DataSource="<%# s %>" Height="78px"
Width="125px"></asp:ListBox>