标题:WEBfrom中在DATAGRID中的DropDownList1如何动态加载数据
取消只看楼主
fzwyg
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2006-1-14
 问题点数:0 回复次数:1 
WEBfrom中在DATAGRID中的DropDownList1如何动态加载数据
我在WEBfrom中在设置DATAGRID1,其中的DropDownList1是模板列,现在向模板列加载数据:

Private Sub DataGrid1_ItemCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridCommandEventArgs) Handles DataGrid1.ItemCommand
If e.Item.ItemType = ListItemType.Item Or e.Item.ItemType = ListItemType.AlternatingItem Then
Dim Mydata As New Ken.Webs.PageBase

Dim strSQL As String = "select Ffeilnote from t_ktabledisp where ftableid='FH'"
Dim dr As SqlClient.SqlDataReader = Mydata.sqlClent(strSQL, "Y")

Dim findgx As New DropDownList
findgx = CType(DataGrid1.Items(e.Item.ItemIndex).FindControl("drpfindgx"), DropDownList)

If dr.Read Then
findgx.DataSource = dr
findgx.DataTextField = "Ffeilnote"
findgx.DataValueField = "Ffeilnote"
findgx.DataBind()
dr.Close()
End If
findgx.Items.FindByValue(Convert.ToString(DataBinder.Eval(e.Item.DataItem, "Ffeilnote"))).Selected = True
End If

End Sub

但findgx.DataSource = dr一行提示:


未将对象引用设置到对象的实例。
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。

异常详细信息: System.NullReferenceException: 未将对象引用设置到对象的实例。


请大家帮忙看看,谢谢!
搜索更多相关主题的帖子: 加载数据 WEBfrom中 DATAGRID 动态 Item 
2006-01-16 11:22
fzwyg
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2006-1-14
得分:0 
补充
其中drpfindgx是模板中控件的ID
2006-01-16 11:23



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-43020-1-1.html




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

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