Hi
I am trying to use the trim() function directly on a recordsetcall.. this is my code:
have also tired
neather of the codexamples above works BUT
the code below works
is there anyway I can use the trimfunction directly on the recordset, as shown in the fist two examples??
I am trying to use the trim() function directly on a recordsetcall.. this is my code:
Code:
response.write(trim(objRecSet("personid")))
have also tired
Code:
response.write(objRecSet(trim("personid")))
neather of the codexamples above works BUT
the code below works
Code:
dim personid
personid = objRecSet("personid")
response.write(trim(personid))
is there anyway I can use the trimfunction directly on the recordset, as shown in the fist two examples??