如何从 datavaluefield 获取值并将其打印在 VB.Net 的页面上

发布于 2024-11-16 17:56:20 字数 309 浏览 1 评论 0原文

我对编程很陌生,如果有人能帮助我,我将非常感激。谢谢

问题:我的网络项目中的下拉列表在“DataTextField”中保存人名的值,并且在“DataValueField”中保存人的 ID,

所以如果我想打印DataValueField的值我该怎么办?

我做了什么:

Dim PersonID as String = DropDownPerson.DataValueField
Response.Write(PersonID)

但是上面的代码返回列名而不是列的值。

请帮忙!

I am quite new to programming and will really appreciate if anyone can help me..Thanks

Question: My dropdown list in my web project is holding value of a person name in 'DataTextField' and it is holding person's ID in the 'DataValueField'

so if I want to print the value of the DataValueField what shall I do?

What I did:

Dim PersonID as String = DropDownPerson.DataValueField
Response.Write(PersonID)

but the above code is returning the column name and not the value of the column.

Please help !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

謸气贵蔟 2024-11-23 17:56:20
Dim PersonID as String = DropDownPerson.SelectedValue

只是为了澄清一些事情 - 下拉控件(和数据绑定)使用 DataTextFieldDataValueField 来描述哪些字段用作所选行的显示值和标识值。

SelectedValue 保存所选行的 DataValueField 中命名的字段的实际值。

Dim PersonID as String = DropDownPerson.SelectedValue

Just to clear something up - DataTextField and DataValueField are used by the dropdown control (and databinding) to describe which fields to use as the display value and identity value for a selected row.

SelectedValue holds the actual value of the field named in DataValueField for the selected row.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文