ไม่มีความรู้ด้าน เขียนเว็บเท่าไรครับ แต่ได้รับมอบหมายงานมา พยายามศึกษาในเว็บนี้มาสองวันแล้วครับ ลองรัน source code จากท่านอื่นๆก็ขึ้นเป็นปกติ แต่ Template ที่ได้มา มันรันแล้วฟ้องว่า "An error occurred on the server when processing the URL. Please contact the system administrator.If you are the system administrator please click here to find out more about this error."
<!--#include file="../includes/connect.asp"-->
<%
nein=0
session("loginok")=""
userx=trim(request.form("userName") )
passx=trim(request.form("userPass") )
sql2 = "select * from admin"
set rs = Conn.Execute(sql2)
do until rs.eof
if rs("u")=userx and rs("p")=passx then nein=1
rs.MoveNext
loop
rs.close
set rs=Nothing
Conn.Close
set Conn=Nothing
if nein=1 then
session("member")="ok"
Session.Timeout = 90
response.redirect "index.asp"
else
session("member")=""
response.redirect "sorry.html"
end if
%>