aspvbnetnerd
Programmer
I know that it is possible to send a integer and get the string.
I want to send a string and return the ID.
Is this possible?
George
Code:
Imports System.Collections
Dim ht As Hashtable
ht = New Hashtable
ht.Add(1, "HI")
ht.Add(2, "BYE")
MsgBox(ht.Item(1))
I want to send a string and return the ID.
Is this possible?
George