<%@LANGUAGE="VBSCRIPT"%> <% set rsAdmin = Server.CreateObject("ADODB.Recordset") rsAdmin.ActiveConnection = MM_connFaranani_STRING rsAdmin.Source = "SELECT * FROM dbo.User_Pass" rsAdmin.CursorType = 0 rsAdmin.CursorLocation = 2 rsAdmin.LockType = 3 rsAdmin.Open() rsAdmin_numRows = 0 %> <% ' *** Validate request to log in to this site. MM_LoginAction = Request.ServerVariables("URL") If Request.QueryString<>"" Then MM_LoginAction = MM_LoginAction + "?" + Request.QueryString MM_valUsername=CStr(Request.Form("UserName")) If MM_valUsername <> "" Then MM_fldUserAuthorization="Access_Level" MM_redirectLoginSuccess="../Admin/admin_Index.asp" MM_redirectLoginFailed="Login_error.htm" MM_flag="ADODB.Recordset" set MM_rsUser = Server.CreateObject(MM_flag) MM_rsUser.ActiveConnection = MM_connFaranani_STRING MM_rsUser.Source = "SELECT UserName, Password" If MM_fldUserAuthorization <> "" Then MM_rsUser.Source = MM_rsUser.Source & "," & MM_fldUserAuthorization MM_rsUser.Source = MM_rsUser.Source & " FROM dbo.User_Pass WHERE UserName='" & MM_valUsername &"' AND Password='" & CStr(Request.Form("Password")) & "'" MM_rsUser.CursorType = 0 MM_rsUser.CursorLocation = 2 MM_rsUser.LockType = 3 MM_rsUser.Open If Not MM_rsUser.EOF Or Not MM_rsUser.BOF Then ' username and password match - this is a valid user Session("MM_Username") = MM_valUsername If (MM_fldUserAuthorization <> "") Then Session("MM_UserAuthorization") = CStr(MM_rsUser.Fields.Item(MM_fldUserAuthorization).Value) Else Session("MM_UserAuthorization") = "" End If if CStr(Request.QueryString("accessdenied")) <> "" And false Then MM_redirectLoginSuccess = Request.QueryString("accessdenied") End If 'If Session("MM_UserAuthorization") = "2" then Response.Redirect("../Admin/admin_Index2.htm") 'else if Session("MM_UserAuthorization") = "1" then Response.Redirect("../Admin/admin_Index1.htm") 'End if MM_rsUser.Close Response.Redirect(MM_redirectLoginSuccess) End If MM_rsUser.Close Response.Redirect(MM_redirectLoginFailed) End If %> Faranani - Auctioneers , estate agents and valuators - Administration Log In Page

 

ADMINISTRATION LOGIN
USER NAME
PASSWORD
   
   

 



Tel: (011) 793 5724 Fax: (011)793 5722 e-mail: info@farananiauctioneers.co.za Broken links: info@2wich.com
 
<% rsAdmin.Close() %>