Files
2026-02-23 10:01:00 +09:00

21 lines
464 B
Plaintext

<!--#include virtual = "/common/lib/dbcon.asp" -->
<!--#include virtual = "/common/lib/func.asp" -->
<!--#include file = "inc_auth_code.asp" -->
<%
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
%>