Exemple #1
0
    protected void Page_Load(object sender, EventArgs e)
    {
        List <category> io = in1.det();

        DropDownList1.DataValueField = "cid";
        DropDownList1.DataTextField  = "cname";
        DropDownList1.DataSource     = io;
        DropDownList1.DataBind();
    }