VerySource

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 2102|回复: 9

dropdownlist绑定不了数据,只显示System.Data.DataRowView

[复制链接]

1

主题

4

帖子

2.00

积分

新手上路

Rank: 1

积分
2.00
发表于 2021-4-22 15:30:01 | 显示全部楼层 |阅读模式
我把代码贴出来了,各位看一下是哪错了???

If Not IsPostBack Then
            Dim astr As String
            astr = "select authername from picture"
            Dim cmd1 As New SqlCommand(astr, conn)
            conn.Open()
            Dim adp As New SqlDataAdapter(cmd1)
            Dim ds As New DataSet
            adp.Fill(ds, "picture")
            DropDownList1.DataSource = ds.Tables(0).DefaultView
            DropDownList1.DataBind()
            DropDownList1.DataTextField = "authername"
            DropDownList1.DataValueField = "pid"
            conn.Close()
        End If
回复

使用道具 举报

1

主题

18

帖子

15.00

积分

新手上路

Rank: 1

积分
15.00
发表于 2021-4-22 15:45:01 | 显示全部楼层

            DropDownList1.DataTextField = "authername"
            DropDownList1.DataValueField = "pid"
DropDownList1.DataBind()
你搞反了。
回复

使用道具 举报

1

主题

18

帖子

15.00

积分

新手上路

Rank: 1

积分
15.00
发表于 2021-4-22 16:00:01 | 显示全部楼层
后databind,先指定text和value
回复

使用道具 举报

1

主题

4

帖子

2.00

积分

新手上路

Rank: 1

积分
2.00
 楼主| 发表于 2021-4-22 16:15:01 | 显示全部楼层
谢谢,我试一下
回复

使用道具 举报

1

主题

4

帖子

2.00

积分

新手上路

Rank: 1

积分
2.00
 楼主| 发表于 2021-4-22 18:00:01 | 显示全部楼层
好的,谢谢 xwgjyhl,但又出现了一个问题,就是我的表里面有好几个一样的authername,它们都在dropdownlist里面显示出来了,我想让它只显示一个,怎么办呢???
回复

使用道具 举报

0

主题

15

帖子

12.00

积分

新手上路

Rank: 1

积分
12.00
发表于 2021-4-22 18:45:01 | 显示全部楼层
astr = "select distinct authername from picture"
回复

使用道具 举报

0

主题

110

帖子

63.00

积分

新手上路

Rank: 1

积分
63.00
发表于 2021-4-22 19:00:01 | 显示全部楼层
astr = "select authername from picture"

->

astr = "select distinct authername,pid from picture"
回复

使用道具 举报

0

主题

110

帖子

63.00

积分

新手上路

Rank: 1

积分
63.00
发表于 2021-4-22 19:15:01 | 显示全部楼层
TO:DropDownList1.DataValueField = "pid"

你都没有把pid查出来,怎么绑定?
回复

使用道具 举报

0

主题

6

帖子

7.00

积分

新手上路

Rank: 1

积分
7.00
发表于 2021-4-22 19:30:01 | 显示全部楼层
select distinct authername,pid from picture
回复

使用道具 举报

1

主题

4

帖子

2.00

积分

新手上路

Rank: 1

积分
2.00
 楼主| 发表于 2021-4-22 20:15:02 | 显示全部楼层
一切OK了,谢谢大家~`
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|CopyRight © 2008-2023|verysource.com ( 京ICP备17048824号-1 )

快速回复 返回顶部 返回列表