首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

Dropdownlist数据绑定不上解决方法

2012-04-21 
Dropdownlist数据绑定不上DAL层是这样写的C# codepublic DataSet GetList(string strWhere){StringBuilder

Dropdownlist数据绑定不上
DAL层是这样写的

C# code
public DataSet GetList(string strWhere)        {            StringBuilder strSql = new StringBuilder();            strSql.Append("select NewsTypeID,NewsType ");            strSql.Append(" FROM Accounts_NewsType ");            if (strWhere.Trim() != "")            {                strSql.Append(" where " + strWhere);            }            return SQLHelper.Query(strSql.ToString());        }

BLL层是这样写的
C# code
public DataSet GetList(string strWhere)        {            return dal.GetList(strWhere);        }public DataSet GetAllList()        {            return GetList("");        }

页面的cs是这样的
C# code
private void BindNewsType()    {        BLL.Accounts_NewsType bll = new BLL.Accounts_NewsType();        DataSet ds = bll.GetAllList();        this. NewsType.DataSource = ds.Tables[0];        this.NewsType.DataTextField = "NewsType";        this.NewsType.DataValueField = "NewsTypeID";        this.NewsType.DataBind();    }

这样数据显示不出来不知道为什么

[解决办法]
你的sql语句的where子句有问题吧
你自己在cmd下运行一下你的sql,应该不正确的吧

热点排行