<% auth_code_num = InputValue( request("auth_code_num") ) auth_num = InputValue( request("auth_num") ) If auth_code_num = "" Or auth_num = "" Then Response.write "auth_code error" Response.end End if If auth_num = auth_code_arr( CInt(auth_code_num) ) Then Response.write "ok" Else Response.write "no" End if %>