I read and type the data out from a Access database
Now I will to write this data to a file
Dim StringName
............
objCmd.CommandText = strQuery
Set objRS = objCmd.Execute
...........
//web browser output
………..
<td><%= objRS("name") %> </td>
...........
With write(objRS("name")) i cant write data to file.
how can I save this data after reading from the database
as a String (how save objRS("name") in StringName)????
StringName=
Now I will to write this data to a file
Dim StringName
............
objCmd.CommandText = strQuery
Set objRS = objCmd.Execute
...........
//web browser output
………..
<td><%= objRS("name") %> </td>
...........
With write(objRS("name")) i cant write data to file.
how can I save this data after reading from the database
as a String (how save objRS("name") in StringName)????
StringName=