Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
Ahmult #1
How to find the user in a database
<%
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();
%>
I tried to use this code, but the code only search for the first line of
database, wont search any more.
How to solve? And one more thing is that it is made by javascript
Any help is appreciate
Ahmult Guest
-
Cant find Database
I have entered the CF Data Source Name and the Database and the Server, username and passord but when i varify connections i get this error ... -
How to find out the User Name The ASP.NET is run under in the code
Hell everyone. We have some problem with the security while trying to upload files trough the System.IO and getting the follow error: ... -
How to find whether an user account is locked or not
Hello, I am using PAM modules for authentication. I need an API which tells whether an user account is locked or not. And also I would like to... -
Passing database info to page allow user input then pass into another database
Hi I really am going crazy! I'm using VBScript, ASP, and SQL My page reminds me of a shopping cart but looking at shopping cart examples has not... -
Another user has modified the contents of this table or view; the database row you are modifying no longer exists in the database;
Hi, I am testing a trigger that and I am getting this error message saying "Another user has modified the contents of this table or view; the... -
goerdie_uk #2
Re: How to find the user in a database
add where userID = whatever , where Userid the users unique id key (assuming thats how youve built the db)
goerdie_uk Guest



Reply With Quote

