Ok I keep getting a 500 server error... I am new at ASP so someone please tell me what I may be doing wrong here..

Code for my login script... Just FYI - Yes we have a secure certificate, and yes my DB is fine - I have other pages that read from it...


PLEASE HELP!

<%@ Language=VBScript %>

<%
UserName = Request.Form("user_name")
Password = Request.Form("password")

Dim conn

Set conn = Server.CreateObject("ADODB.Connection")

conn.Open("DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & _

Server.MapPath("\data\data.mdb"))

Dim strSQL, rs

strSQL = "Select User_ID, User_Password From tblUsers " _
& "Where UserName = '"&User_ID&"' And Password = '"&User_Password&"'"

If Not RS.EOF Then
Session("allow") = True

Response.Redirect "https://www.mysite.net/technical_services/admin/"

Else
Response.Redirect "https://www.mysite.net/technical_services/"

rs.Close

Set rs = Nothing

conn.Close

Set conn = Nothing

%>