Hi Rita,
You can directly us it refering as rs("PPO Org"). This works fine for me. I don't see any issues with it.
You should always keep in mind that, you don't use any reserve keywords of MS Access as column names. Otherwise, you can use it this way to get the values.
If that still does not work for you, you can try it this way.
Code:
set conn = Server.Createobject("ADODB.connection")
connstring = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source = " & server.MapPath("./yourdb.mdb")
set rs=Server.CreateObject("ADODB.recordset")
rs.Open "Select * from yourtable", conn
for each x in rs.fields
response.write(x.name)
response.write(" = ")
response.write(x.value)
response.write("<br>")
next
conn.close
This should do the trick.
PS: You can follow as Steven suggested, but I would recommend, not to use SPACEs in your COLUMNNAME though it allows using SPACEs, IMO it is not a good practice.
Hope that helps.
Cheers!
_________________________
-Vijay G

Strive for Perfection
