zoukankan      html  css  js  c++  java
  • ASP.NET dropdownlist绑定数据却显示System.Data.DataRowView

     

    问题: 在VS中用dropdownlist控件绑定数据,浏览时却在控件里显示System.Data.DataRowView,而不是要显示的数据,代码如下:

    public static DataSet GetDataSet(DataSet ds, string tablename)
           {
               string s = "select departmentName from department_info";
               string con = ConfigurationManager.ConnectionStrings["CodematicConnectionString"].ConnectionString.ToString();
               SqlConnection conn = new SqlConnection(con);
               SqlDataAdapter adapter = new SqlDataAdapter(s, con);
               adapter.Fill(ds, tablename);
               return ds;
           }

    protected void Page_Load(object sender, EventArgs e)
           {

             if(!IsPostBack)

               {
                   DataSet ds = new DataSet();
                   string tablename = "department_Info";
                   ds = GetDataSet(ds, tablename);
                   this.ddl_post.DataSource = ds;
                          this.ddl_post.DataBind();
                   DataTable dt = ds.Tables[0];
                   DataRow dr = dt.NewRow();
                   dr[0] = "==请选择==";
                   //添加到第1行
                   dt.Rows.InsertAt(dr, 0);
                   this.ddl_post.DataSource = dt;
                   //这种方法也可以
                   //this.ddl_department.Items.Insert(0,"==请选择==");
                   //this.ddl_department.Items.FindByText("==请选择==").Selected = true;

               } 

         }

    解决:在DataBind();前加上

             ddl_post.DataTextField = "departmentName";
                  ddl_post.DataValueField = "departmentName";

    就可以了.

  • 相关阅读:
    How a webpage is loaded and displayed
    Tree知识总结
    Install Cassandra Locally
    axios接口封装
    Jsonp解决跨域问题
    react使用swiper,解决添加点击事件首位图片点击失效,解决轮播按钮被覆盖问题
    vue 生产环境和测试环境的配置
    vue使用远程在线更新代码
    vue.js axios实现跨域http请求接口
    leetcode每日一题(2020-05-27):974. 和可被 K 整除的子数组
  • 原文地址:https://www.cnblogs.com/tangge/p/2502233.html
Copyright © 2011-2022 走看看