|
||||
|
- allinurl/"user.asp" - 27allinurllogin password.asp27 - login form in asp - database password script - corning incorporated seeking alpha - https///paynow7.speedpay.com/aqua/index.asp - aspscript for login - asp text field scripts - log in form script - query strings asp - creating a login script with asp - asp log in - aspscript log - alert asp - script set up username and password login database - cafepress asp script - secured login and logout in asp - grab whole querystring asp - inurl/"password.log" - how to create access mdb in hebrew |
Access Mdb Users Logged OnASP ScriptsCreating a Simple Login Processaccess.mdb This is the database where the username and passwords are kept. It should be stored in a directory, where it can't be accessed directly by a user, but only accessed by scripts which are stored on the server. If you want to set up the database yourself: I have called the table users. If you change this name, then ensure that you also change the references to it in addinguserproc.asp and loginproc.asp The table has 3 fields: I have kept it simple for these purposes, but in a real life situation you may want to make it slightly more complicated. addinguser.asp This is simply a form for a new user to add their information. More fields can be added if required by just adding more lines. For example: <%Response.Write("Address <input type = ""Text"" name =""Address"">")%> addinguserproc.asp This script checks that the user has entered a password and username and email address. It then adds these values to the database as a new user and logs in that user in a similar way to loginproc.asp . It then redirects that user to success.asp to tell them that they are logged in authenticate.asp This should be included at the top of each file that you want to password protect. The asp file should have <%Response.Write("<%@ Language=VBScript %>" & vbcrlf)Response.Write(" at the top and this should be included immediately after these two lines by putting: <% Response.Write("<!-- #INCLUDE FILE = "authenticate.asp" -->") %> delete.asp This script is activated from viewusers.asp in order to delete users from the database.emailcheck.asp This is a simple script to check that the person adding their email address is entering a valid email address. It checks that there is only one @ sign and also there there is a dot there failure.asp This tells the user, that they are not logged in if it is true or their username if they are logged in. login.asp This is a simple form for a user to log in. It requires a Username and password, however other fields can be added as with addinguser.asp . loginproc.asp This checks that a Username and Password were entered. It then checks them against the database to make sure that the Username exists and that the password entered is valid.If they are, then it writes a session variable of their username and redirects them to the success page logout.asp This page simply sets the session variable equal to "" . It then redirects the user to failure.asp to tell them that they are not logged in. success.asp This could say anything, but to show that the script is working, I have written the session variable produced by loginproc.asp to show the user name. viewusers.asp This shows all valid users in a table. For security, don't put this in a place which can be easily found by visitors. Alternatively, password protect this page by changing authenticate.asp to only allow access if there is a particular username that has been logged in. You are also able to delete users from this page, but once deleted, they are deleted permanently. Any more questions please email scripts@grabthebasics.com Anfibia Launches Watchman 6.0, The New Application And System Protection Monitor(PRWEB) December 13 2003--Anfibia Software announces the release of Watchman version 6.0, the tool of choice for protecting your system in a reliable way. Watchman 6 sets new standards in simplicity,... New version of Virtual Factory™ allows for a direct interface with any DNC-controlled machine, enabling automatic user notification and data logging in response to changing machine states(PRWEB) December 17 2003--Virtual Factory™, the “monitoring and control” software solution from Orbit Technology Corporation, now features a direct DNC software interface. Users can... Visual Log 2.0 Has Been ReleasedHouston, TX (PRWEB) April 22, 2004 -- Visual Log is an advanced windows 2000/2003/XP® log solution, it can monitor programs running, files accessing, network logging and screen activities. ... Cool C™ Talking Computer Software turns Incredible Discoveries TV and Log Home Expo Web Pages into Talking Web Pages(PRWEB) May 12, 2004 -- The Cool C Web Reader™ dramatically extends the Cool Conversations Cool C Talking Computer Software's capabilities and utility. The program works by locating and then... First "finger-friendly" software for Pocket PC Phone Edition handhelds now available.(PRWEB) May 12, 2004 -- The Cool C Web Reader™ dramatically extends the Cool Conversations Cool C Talking Computer Software's capabilities and utility. The program works by locating and then... DataQwest Releases MDB Artisan 2003 for Microsoft AccessMerrick, NY (PRWEB) December 28, 2004 -- DataQwest Technologies today announced the availability of MDB Artisan 2003 for Microsoft Access 2003. Available for free download from... |
|||
|
|
||||