Эй, друзья, пожалуйста, помогите мне ...
Как я могу написать response.write
заявление ..... Я хочу поставить переключатель, но есть проблема в response.write
, чтобы получить строку из набора записей RS
и ORS
...
set ORS = Server.CreateObject("ADODB.recordset")
getopt="SELECT * FROM Options WHERE QuestionID=" & RS("QuestionID")
ORS.Open getopt,Conn
if not ORS.EOF then
ORS.movefirst
do
response.write " <input type='radio' name=' 'Question' & RS('QuestionID')& ''' value='Answer' & ORS('OptionID') & ''' > <h2 >" & ORS("Option") & "</h2><br />"
ORS.movenext
loop until ORS.EOF
end if
RS.movenext
loop until RS.EOF