如何获取asp.net下拉列表的选定值并将其存储在会话变量中?

发布于 2024-09-01 14:20:23 字数 105 浏览 4 评论 0原文

Dim ename As String = DropDownList.SelectedItem.Value

这个声明不起作用 任何帮助表示赞赏!

Dim ename As String = DropDownList.SelectedItem.Value

this statement is'nt working
any help is appreciated!!

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

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

发布评论

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

评论(3

背叛残局 2024-09-08 14:20:23

我不确定这是否是您的问题,但如果您正在查找项目的文本(而不是值),则需要 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

海的爱人是光 2024-09-08 14:20:23

我尝试了 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.

Hello爱情风 2024-09-08 14:20:23

您需要将值存储到会话变量中,而不仅仅是字符串变量中:

Dim ename As String = DropDownList.SelectedItem.Value

Session("yourKey") = ename 

You need to store the value into a session variable, not only in a String variable:

Dim ename As String = DropDownList.SelectedItem.Value

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