.Net 3.5 中的 ASP.Net 配置文件对象
使用个人资料功能存储用户最近 10 次搜索的最佳方式是什么?
基本上我需要某种圆形数组,但不知道如何实现。一种选择是在某个地方编写一个静态(共享)函数,
Public Shared Sub AddSearch(strSearch as String)
Profile.Search1= Profile.Search2
Profile.Search2= Profile.Search3
.....
.....
.....
Profile.Search10= strSearch
End Sub
您对不那么笨重的东西有什么想法吗?
What is the best way to use to the Profile feature to store a users last 10 searchs.
Basically I need some kind of circular array, but not sure how to implement. One option is to write a static (Shared) function somewhere that
Public Shared Sub AddSearch(strSearch as String)
Profile.Search1= Profile.Search2
Profile.Search2= Profile.Search3
.....
.....
.....
Profile.Search10= strSearch
End Sub
Any thoughts on something less clunky?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
几年前,我编写了一个数据库存储过程来执行此操作,但我突然想到使用
队列
可能有更好的方法。Queue(Of String) 会更好,但我无法让编译器从 web.config 接受它。
A couple of years ago I wrote a database stored procedure that did this, but it occurs to me there may be a better way by using a
Queue
.A
Queue(Of String)
would be even nicer but I can't get the compiler to accept it from the web.config.