Error Type:
(0x80020009)
Exception occurred.
/iso/QUADTraining/registerTrainDetial.asp, line 52
ซึ่ง line 52 เป็น เงือนไข If แบบนี้ค่ะ
<%
if rs("r.idCourse")<> "" or rs("R.idCourse")=idCourse then <----- ตรงนี้คือ line52 ค่ะ
errmsg = "คุณได้ทำการลงทะเบียนไปแล้วในหัวข้อการอบรมนี้ <a href=registrain.asp>คลิกที่นี่</a>"
Response.Write errmsg
Response.End
else
Do While not rs.eof
%>
sql = "select * from CourseDetial CD, Expertness E , Admin A , SectionClass SC , Register R " &_
" where CD.idExpertness=E.idExpertness and SC.idSection=A.idSection and R.idCourse=CD.idCourse "&_
" and A.idSection="&idSection &_
" and CD.idCourse="&idCourse
Set rs = Server.CreateObject("ADODB.Recordset")
rs.Open sql, conn, 1,3
if rs("r.idCourse")<> "" then
errmsg = "<br><br><br><br><center>"
errmsg = errmsg & "คุณได้ทำการลงทะเบียนไปแล้วในหัวข้อการอบรมนี้ไปแล้ว <br> "
errmsg = errmsg & "กรุณา <a href=registrain.asp>คลิกที่นี่</a> เพื่อกลับไปเลือกหัวข้อการอบรมใหม่ค่ะ"
Response.Write errmsg
Response.End
end if