VB.net/asp.net:将会话保存为ArrayList
我想在我的 asp.net 应用程序中将 Session("myKey")
中的一些字符串保存为 ArrayList。
所以我有这样的想法:
Dim s As String = "String1"
如果我使用
Session("myKey") = s
它,那么它暂时有效。
回发后我想向会话添加另一个字符串。
如果再次做同样的事情,那么我将覆盖我的会话数据。
所以我正在寻找这样的东西:
Dim s As String = "String1"
TryCast(Session("myKey"), ArrayList).Add(s)
在这种情况下,会话数据将被正确存储,但我的代码不正确。
I want to save some strings in a Session("myKey")
as an ArrayList in my asp.net application.
So I have somthing like that:
Dim s As String = "String1"
If I use
Session("myKey") = s
it is working for the moment.
After PostBack I want to add another string to the session.
If do the same thing again, then i will overwrite my Sessiondata.
So I'm searching for something like this:
Dim s As String = "String1"
TryCast(Session("myKey"), ArrayList).Add(s)
In this case the Sessiondata would be stored correctly, but my code is not correct.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我自己尝试并找到了解决方案;
不知道这是否是通常的方式,但它有效。
I've tried and found a solution by myself;
Don't know if it is the usual way, but it is working.