|
|
<%
if Request.Form("radiobutton") ="radiobutton3" then
if Request.Form("submit") ="Submit" then
if (ucase(Request.Form("userid")) ="PARTNER") and (ucase(Request.Form("pwd")) ="INDIA" or ucase(Request.Form("pwd")) ="INTER") then
if ucase(Request.Form("pwd")) ="INDIA" then
Response.Write " |  | "
else
Response.Write " | "
end if
end if
end if
end if
%>
<% if Request.Form("radiobutton") ="radiobutton3" then
if Request.Form("submit") ="Submit" then
if not ((ucase(Request.Form("userid")) ="PARTNER") and (ucase(Request.Form("pwd")) ="INDIA" or ucase(Request.Form("pwd")) ="INTER")) then
Response.Write "Invalid User Id/Password"
end if
end if
end if
%>
<% if Request.Form("radiobutton") ="radiobutton4" then
if Request.Form("submit") ="Submit" then
if not ((ucase(Request.Form("userid")) ="xx") and (ucase(Request.Form("pwd")) ="xx" ))then
Response.Write "Invalid User Id/Password"
end if
end if
end if
%>
<% if Request.Form("radiobutton") ="radiobutton5" then
if Request.Form("submit") ="Submit" then
if not ((ucase(Request.Form("userid")) ="xx") and (ucase(Request.Form("pwd")) ="xx" ))then
Response.Write "Invalid User Id/Password"
end if
end if
end if
%>
|