%
if Request.Form("iFlag") = "1" then ' Benutername und Passwort wurden eingtetippt
if Request.Form("Benutzername")="" or Request.Form("Passwort")="" then
strInfo="Login Unsuccessful.
The user ID or password you supplied is not correct. Verify that the CAPS LOCK key
is off and be sure to use the correct capitalization.
If you DO NOT have a valid password...
BUT you are a reseller and would like to have a valid password
to gain entrance to access our dealer price, please click here to request password.
"
else
'=========== Diese Variablen anpassen =============================================
vUserName = "dealer01" 'User Name
vUserPass = "dealer88" 'Password
vRedirect = "mysite.asp" 'Diese Seite wird bei erfolgreichem Login aufgerufen
'=========== Diese Variablen anpassen =============================================
strBenutzername = Trim(Request.Form("Benutzername"))
strPasswort = Trim(Request.Form("Passwort"))
if strBenutzername = vUserName and strPasswort = vUserPass then
Session("Benutzername") = strBenutzername
Response.Redirect vRedirect
else
strInfo="Login Unsuccessful.
The user ID or password you supplied is not correct. Verify that the CAPS LOCK key
is off and be sure to use the correct capitalization.
If you DO NOT have a valid password...
BUT you are a reseller and would like to have a valid password
to gain entrance to access our dealer price, please click here to request password.
"
end if
end if
end if %>
.