本文介绍了gridview检索数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个数据库
c1 c2 c3 c4
1 2 3 abc
1 2 3 efg
3 3 4 fgh
尝试将输出检索为
时
1 2 3 abc
efg
3 3 4 fgh
编写代码时
如果e.Row.RowType = DataControlRowType.DataRow然后
昏暗的sqlStr作为字符串
mystringdept = CType(e.Row.FindControl("c2"),Label).Text
不能放下
请帮助
i have a database
c1 c2 c3 c4
1 2 3 abc
1 2 3 efg
3 3 4 fgh
when trying to retrive output as
1 2 3 abc
efg
3 3 4 fgh
when sriting the code
If e.Row.RowType = DataControlRowType.DataRow Then
Dim sqlStr As String
mystringdept = CType(e.Row.FindControl("c2"), Label).Text
not getting out put
please help
推荐答案
这篇关于gridview检索数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!