converting asp .net??

  • Thread starter Thread starter DaveF
  • Start date Start date
Set = rs("field")
isn't valid that I know of in ANY lang?
And it will depend on if you are using a RS, DS, etc etc
 
The syntax you listed isn't quite valid...
I'm not entirely sure what you're trying to do...

Maybe you're looking for something like this:

Dim s as string = MyDataReader("FirstName")
 
Back
Top