Exemple #1
0
    //绑定所有身份信息
    public void DataBindProvince()
    {
        List <Province> list = AddressMessager.GetProvinceAll();

        if (list != null)
        {
            this.ddlSheng.DataSource     = list;
            this.ddlSheng.DataValueField = "name";
            this.ddlSheng.DataTextField  = "name";
            this.ddlSheng.DataBind();
        }
    }