Home > Archive > ASP > February 2005 > Collection in ASP
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
| Logico 2005-02-24, 3:55 pm |
| Hi everybody,
does anyone know how to define own Collection objets in ASP (not
ASP.NET!) and VBScript? Is it better to use the Collections or the
"Scripting.Dictionary" object?
Thanks, bye
AM
| |
| Bob Barrows [MVP] 2005-02-24, 3:55 pm |
| Logico wrote:
> Hi everybody,
> does anyone know how to define own Collection objets in ASP (not
> ASP.NET!) and VBScript? Is it better to use the Collections or the
> "Scripting.Dictionary" object?
Collections are not supported in vbscript, so the Dictionary object is your
only choice.
Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
| |
|
|
"Logico" <amilani@dsi.unive.it> wrote in message
news:ffe0d3c1.0502240828.59fb8e10@posting.google.com...
> Hi everybody,
> does anyone know how to define own Collection objets in ASP (not
> ASP.NET!) and VBScript? Is it better to use the Collections or the
> "Scripting.Dictionary" object?
> Thanks, bye
> AM
Hi ,
You can used the dictionary object which can store key , value pair.
Regards
Vinod
|
|
|
|
|