I want to validate Username and Password in a database.
My database name is UsersLogin. The database table name is UsrLogin. The users are Mary with password: acd222 and John with password: dbd445 (field names : Users and UserPassword)
How can these 2 users login using their individual account details? And how can i lock them out after 3 wrong attempts please?
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
...
Go to the complete details ...