如何从 datavaluefield 获取值并将其打印在 VB.Net 的页面上
我对编程很陌生,如果有人能帮助我,我将非常感激。谢谢
问题:我的网络项目中的下拉列表在“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只是为了澄清一些事情 - 下拉控件(和数据绑定)使用
DataTextField
和DataValueField
来描述哪些字段用作所选行的显示值和标识值。SelectedValue
保存所选行的DataValueField
中命名的字段的实际值。Just to clear something up -
DataTextField
andDataValueField
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 inDataValueField
for the selected row.