> The following is a example of C# ADO.Net code that I am trying to
> incorporate in my JScript code. How do I make the line with the
[quoted text clipped - 6 lines]
> // Create an array for the key values to find.
> object[]findTheseVals = new object[3]; //*******
object in C# is an alias for System.Object in .NET thus is you use
var findTheseVals: System.Object[] = new System.Object[3];
findTheseVals[0] = "John";
findTheseVals[1] = "Smith";
findTheseVals[2] = "5 Main St.";
I think it should work

Signature
Martin Honnen
http://JavaScript.FAQTs.com/
Norman - 16 Dec 2003 21:47 GMT
That is correct.
Thank you.
> > The following is a example of C# ADO.Net code that I am trying to
> > incorporate in my JScript code. How do I make the line with the
[quoted text clipped - 15 lines]
>
> I think it should work