I am trying the following code it display nothing can anyone tell me whats wrong with it.
response.write "" & vbcrlf
If I remove "/>" then it works.
Thanks in advance
2007-03-14
13:18:15
·
4 answers
·
asked by
Anonymous
in
Computers & Internet
➔ Programming & Design
set Rs= rtnRecordset("Select Name,Email from UserDetails", Con)
with Rs
Do While NOT .EOF
response.write "" & vbcrlf"
.MoveNext Loop
if .state<>0 then .close
End With
set Rs=Nothing
This is the complete code when I remove "/>" it display the results fine but when I add "/>" then it display blank page.
2007-03-14
13:29:30 ·
update #1
Microsoft VBScript compilation error '800a03ee'
Expected ')'
/testxml.asp, line 15
Getting this error with bill4351's answer
2007-03-14
13:41:32 ·
update #2