Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
Ahmult #1
User Login
<%
vName = Request.Form("name");
vPwd = Request.Form("pwd");
vConnString = Server.MapPath("/group") + "\\_db\\user.mdb";
vRS = Server.CreateObject("ADODB.Recordset");
vRS.ActiveConnection = "Driver={Microsoft Access Driver (*.mdb)};DBQ=" +
vConnString;
vRS.Source = "SELECT * FROM reg";
vRS.Open();
%>
When the user login, the sql only can search for the 1st line. How can we do
the code so it can search for the next user?
I tried to use this code. My database is called reg and has 3 parameter. id,
username and pwd
How to solve? And one more thing is that it is made by javascript
Any help is appreciate
Ahmult Guest
-
Login User from Novell Login
Hi, At present a user loggin onto our netwok enters their username and password by a Novell Login prompt. When they fire up their browser they... -
user and admin login on same login page
Hello, I have a user login page which also doubles as my administrator login. Currently, my method of logging in doesnt seem to be working... -
Login User User Error 80040e21
I am getting an 80040e21 error using the log in user server behavior. The complete error message is Microsoft OLE DB Provider for SQL Server... -
Domain Login - One User Can/Another User Cannot from same Win XP computer
Okay ... I'm confused. I installed a brand new computer and everything was working fine. I was then advised who would be getting the computer,... -
User changing something on a form makes asp.net take user to login page
Hi, I have an application that displays the database table records on the web page, the user can navigate thru the contents and make changes and... -
goerdie_uk #2
Re: User Login
you need to loop throught the recordset , if youre using DW , try using repeat region to see how it works - if not look at the BOF and EOF parameter in ASP
goerdie_uk Guest



Reply With Quote

