| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 911 人关注过本帖
标题:why dropdownlist don't bind
取消只看楼主 加入收藏
apple0129
Rank: 1
等 级:新手上路
帖 子:39
专家分:0
注 册:2008-3-28
收藏
 问题点数:0 回复次数:2 
why dropdownlist don't bind
private void GetSourceListData()
            string cmdText = "SECECT powerid,powername from power";
            DataTable table =ReturnSqlex(cmdText);
            
                SoureList.DataSource = table.DefaultView;
                SoureList.DataTextField = "powername";
                SoureList.DataValueField = "powerid";
                SoureList.DataBind();
                SoureList.Items.Insert(0, new ListItem("请选择", ""));
                SoureList.DataBind();

        }

        public DataTable ReturnSqlex(string strSql)//调用此方法返回一个datatable
        {

            SqlConnection con = new SqlConnection(
                ConfigurationSettings.AppSettings["SQLCONNECTIONSTRING"]);

            try
            {
                con.Open();
                SqlCommand cmd = new SqlCommand(strSql, con);
                SqlDataAdapter sdr = new SqlDataAdapter();
                sdr.SelectCommand = cmd;
                DataSet ds = new DataSet();
                sdr.Fill(ds, "table");
                return ds.Tables["table"];
            }
            catch (SqlException ex)
            {
                //抛出异常
                throw new Exception(ex.Message, ex);
            }
            finally
            {   ///关闭链接
                con.Close();
            }
        }
搜索更多相关主题的帖子: why bind dropdownlist don 
2008-04-09 22:22
apple0129
Rank: 1
等 级:新手上路
帖 子:39
专家分:0
注 册:2008-3-28
收藏
得分:0 
回复 2# 的帖子
已经去掉了,运行没错误,但就是没有显示数据,而数据库中确实有数据,怎么回事啊,已经好几天了,一直没有解决啊,
2008-04-09 22:40
apple0129
Rank: 1
等 级:新手上路
帖 子:39
专家分:0
注 册:2008-3-28
收藏
得分:0 
我已经把rows改成了Rows,response.write改成了Response.Write 但是又出现了错误,"proid"字段是int 型的
无法将类型“System.Data.DataRowCollection”隐式转换为“System.Data.DataRow[]”
2008-04-10 00:21
快速回复:why dropdownlist don't bind
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.044707 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved