Home Sitemap Email Us » Health Portal Service   » Client Login
Nexus Healthcare
» Client login
<%if Request.form("user_id")="" then %>
 
<%=request.QueryString("msg")%>
 
Login Name
Password
 
© 2006 Nexus Healthcare. All rights reserved.  
<%else user=Request.Form("user_id") pass=Request.Form("pass") set rsverify=server.CreateObject("ADODB.recordset") rsverify.Open=conn.execute("select * from adminuser where user_id = '"&user&"'") if rsverify.eof then conn.close set conn=nothing response.redirect("client-login.asp?msg=" & Server.URLEncode("We don't have any record of the User ID you entered.
Please review the information you entered.")) end if if lcase(trim(rsverify("pass")))<>lcase(trim(pass)) then conn.close set conn=nothing response.redirect("client-login.asp?msg=" & Server.URLEncode("You entered the wrong password.
Please retype it and try again.")) end if session("logged")="true" session("uname")=rsverify("user_id") conn.close set conn=nothing response.redirect "test.asp" end if %>