Hi there,
This is an ASP forum, so you may try your luck on one of the .NET forums for questions like this.
Anyway, the problem you have (at least that's what I think, as you didn't explain the problem at all) is that you can't have a DataReader and other actions on the same connection. That is, as soon as you open the DataReader (command.ExecuteReader()), you can't use the connection until you call the Close method of the reader. There are two ways around this: either create a second Connection object and use that for the second command object, or change your coding logic so it requires only one active command object with an open connection at a time.
P.S. mtuppers, Try / Catch is also C#,
VB.NET and some other programming languages. So this wasn't about Windows Script, but about
VB.NET.
Cheers,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.