弊社のカタログをご覧いただくにはこちらにログインお願いします。
IDとパスワードを取得するにはこちらの toc@aab-japan.co.jp までお問い合わせ下さい。
<%
Username="aab-japan"
Password="aabj"
Validated = "OK"
if Strcomp(Request.Form("User"),Username,1)=0 AND Request.Form("password") = Password then
'Set the validation cookie and redirect the user to the original page.
Response.Cookies("ValidUser") = Validated
'Check where the users are coming from within the application.
If (Request.QueryString("from")<>"") then
Response.Redirect Request.QueryString("from")
else
'If the first page that the user accessed is the Logon page,
'direct them to the default page.
Response.Redirect "jewelrycataloguenew.asp"
End if
Else
' Only present the failure message if the user typed in something.
If Request.Form("User") <> "" then
Response.Write "Login failed, please try again.
"
End if
End if
%>