|
|
|
|
|
|
|
|
|
|
|
|
|
|
<%
'########## if all fields are filled, start checking the fields
if allExist then
if strComp ( userInput, user ) = 0 and strComp ( pwdInput, pwd ) = 0 then
session("adminmatch")=true
response.redirect( "teacher.htm" )
elseif request.form <> "" then
response.write( "| " )
response.write( "資料不正確, 請重新輸入!" )
response.write( " | " )
end if
end if
%>
|