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?