Когда я пытаюсь войти в систему как сотрудник, я получаю страницу администратора (я получил ту же страницу для входа администратора) ... это мой код
Try
con.Open()
With cmd
.Connection = con
.CommandText = sqlQuery
End With
da.SelectCommand = cmd
dt = New DataTable
da.Fill(dt)
Dim maxrow As Integer = dt.Rows.Count
Dim users As String
users = "select privilege from users where user_type='" & Textbox2.Text & "'"
If maxrow > 0 Then
MsgBox("Welcome " & dt.Rows(0).Item(4))
If users = "Administrator" Then
Adminhome.Show()
Me.Hide()
ElseIf users = "Staff" Then
Userhome.Show()
Me.Hide()
End If
Else
MsgBox("Account does not exist.")
End If
Catch ex As Exception
MsgBox(ex.Message)
End Try
con.Close()