IListSource不包含任何数据源。

时间:2015-03-11 10:21:23

标签: c# asp.net

运行时我有这个代码我得到这个错误  IListSource不包含任何数据源。  我尝试了更多但没有任何好处..

    public static DataSet SelectAll_EmployeeType()
{
    DataSet ds = new DataSet();
    string sqlCommand = "";
    SNS_Lib.SQL_DB mySQL = new SNS_Lib.SQL_DB();
    sqlCommand = "SELECT * FROM EmployeeType";
    ds = mySQL.SelectFromQuery(sqlCommand);
    return ds;

}
private void FillSource()
{ 
        DataSet ds = Client.SelectAll_EmployeeType();
        DDL_UserType.DataSource = ds;
        DDL_UserType.DataTextField = "Type";
       DDL_UserType.DataValueField = "Type";                             
        DDL_UserType.DataBind();
        DDL_UserType.Items.Insert(0, "-- Select One");
   }

运行此应用程序时出现此错误

 The IListSource does not contain any data sources.

描述:执行当前Web请求期间发生了未处理的异常。请查看堆栈跟踪,以获取有关错误及其在代码中的起源位置的更多信息。

异常详细信息:System.Web.HttpException:IListSource不包含任何数据源。

来源错误:

Line 224://ds.Tables[0].DefaultView

第225行:DDL_UserType.DataValueField ="输入" 第226行:DDL_UserType.DataBind() 第227行: 第228行://在第一个位置添加项目。

0 个答案:

没有答案