摘要:
在ASP页面上用了一个dropdownlist,然后页面加载时后台动态加载绑定dropdownlist的选项,但是SelectedIndexChanged事件中获取到SelectedIdex总是为0。原来在页面加载的时候,它的Items就是0个,此时加载其他数据进去,当页面PostBack回去的时候,ASP.NET没办法知道加载的内容,所以得到的Items的个数还是0个。所以SelectIndex是0。解决方案:if (!Page.IsPostBack){DDLDataBine();} 阅读全文
摘要:
动态绑定方法一:动态绑定数据库中的字段。SqlConnection conn = UtilitySqlClass.OperateDataBase.ReturnConn();string strSQL = "select * from CompanyType";SqlDataAdapter ada = new SqlDataAdapter(strSQL, conn);DataSet ds = new DataSet();ada.Fill(ds, "CompanyType");DropDownList1.DataSource = ds.Tables[&quo 阅读全文