May 18, 2005 #1 cjburkha Programmer Jul 30, 2004 76 US Hi, In javascript I can do this var myArray = new Array(); myArray['Steve'] = 'Male'; I can't remember this syntax in vb.net. If I remember, it is a class, but system.array is not helping me. Any help, leads, or links are appriciated. CJB
Hi, In javascript I can do this var myArray = new Array(); myArray['Steve'] = 'Male'; I can't remember this syntax in vb.net. If I remember, it is a class, but system.array is not helping me. Any help, leads, or links are appriciated. CJB
May 19, 2005 1 #2 RobHudson Programmer Apr 30, 2001 172 GB Hi ya Try using a NameValueCollection. Dim stuff as New System.Collections.Specialized.NameValueCollection stuff("jimbob") = "hello" Response.Write(stuff("jimbob").ToString()) Good luck! Upvote 0 Downvote
Hi ya Try using a NameValueCollection. Dim stuff as New System.Collections.Specialized.NameValueCollection stuff("jimbob") = "hello" Response.Write(stuff("jimbob").ToString()) Good luck!
May 19, 2005 Thread starter #3 cjburkha Programmer Jul 30, 2004 76 US Thanks a lot man, that worked great. Upvote 0 Downvote