Authentication Authorization ASP.Net Tutorial

<%@ Page Language="VB" %>
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.OleDb" %>

   sub Login(Sender as Object, e as EventArgs) 
      dim intID as integer = 0
      dim Conn as new OleDbConnection("Provider=" & _
            "Microsoft.Jet.OLEDB.4.0;" & _
            "Data Source=userTable.mdb")
      dim objCmd as OleDbCommand = new OleDbCommand _
         ("SELECT UserID FROM tblUsers WHERE " & _
         "Username = '" & tbUserName.Text & "' " & _
         "AND Password = '" & tbPassword.Text & "'", Conn)
      dim objReader as OleDbDataReader
      try
         objCmd.Connection.Open()
         objReader = objCmd.ExecuteReader()
         do while objReader.Read
            intId = objReader.GetInt32(0).ToString()
         loop
      catch ex as OleDbException
         lblMessage.Text = ex.Message
      finally
         objReader.Close()
         objCmd.Connection.Close()
      end try
      if intID <> 0 then
         FormsAuthentication.SetAuthCookie(intID, false)
         lblMessage.Text = "Success!"
      else
         lblMessage.Text = "Invalid username or password!"
      end if
   end sub      


   
      
      Username:
      

      Password:
      
      
   

File: Web.Config