Привет. В классических приложениях asp можно использовать System.Collections.HashTable ( и многие другие из mscorlib ).
Попробуйте следующее. Надеюсь, полезно.
Приложение Asp:
Option Explicit
Dim Dictionary, objNetCom, i
Set Dictionary = Server.CreateObject("System.Collections.HashTable")
Set objNetCom = Server.CreateObject("MyTest.doTest")
With Dictionary
For i = 65 To 90
.Add Chr(i), i
Next
End With
Response.Write objNetCom.getDictType(Dictionary)
Set Dictionary = Nothing
Set objNetCom = Nothing
a c # Com Visible:
using System;
using System.Collections;
namespace MyTest
{
public class doTest
{
public string getDictType(Object tDict)
{
return String.Format("Type : \"{0}\", Count : {1}", ((Hashtable)tDict).GetType().ToString(), ((Hashtable)tDict).Count);
}
}
}