如何获取asp.net下拉列表的选定值并将其存储在会话变量中?
Dim ename As String = DropDownList.SelectedItem.Value
这个声明不起作用 任何帮助表示赞赏!
Dim ename As String = DropDownList.SelectedItem.Value
this statement is'nt working
any help is appreciated!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不确定这是否是您的问题,但如果您正在查找项目的文本(而不是值),则需要
DropDownList.SelectedItem.Text
。要存储在会话中,您只需使用
Session("yourKey") = DropDownList.SelectedItem.Value
I'm not sure if this is your problem, but if you're looking for the text of the item (instead of the value) you need
DropDownList.SelectedItem.Text
.To store in session, you can just use
Session("yourKey") = DropDownList.SelectedItem.Value
我尝试了 DropDownList.SelectedItem.ToString() &它起作用了。我也尝试过不带括号 &它在 Visual Basic 中仍然有效。我希望它也对你有用。
I tried DropDownList.SelectedItem.ToString() & it worked. I tried without the parentheses too & it still work in visual basic. I hope it will work for you too.
您需要将值存储到会话变量中,而不仅仅是字符串变量中:
You need to store the value into a session variable, not only in a String variable: