Hello all,
Is it possible two pass a List<> from one ASP page to another? If so, any suggestions on how to do this?
Thanks in advance,
Greyskull
Printable View
Hello all,
Is it possible two pass a List<> from one ASP page to another? If so, any suggestions on how to do this?
Thanks in advance,
Greyskull
Pass it through the Session or the Cache object, that would be the simplest approach.
.
Thanks a bunch!:thumb:
One thing to bear in mind here, if the List is VERY big, then using a Session variable may not be the best approach.
Gary