Google Nemesis Review

grabthebasics.com
home faq wannahelp feedback contact

- asp script ebay
- dwzone asp upload and resize
- valid characters in text field
- paynow7.speedpay.com//aqua/index.asp.
- inurl/password.log filetype/asp
- login script asp
- asp sample log in
- asp passwordrestricted form
- asp clear querystring variable
- script to log in to windows
- asp success page
- asp script clear session variables script
- "age verification script"
- querystring encryption httpmodule c%23
- include username in asp query
- asp.net: httpmodule for query string encryption
- "working with strings in asp.net"
- log inurl/"password.log" ebay
- phpbb3 login script
- how to change password asp.net

What Is Log In Script


ASP Scripts

Creating a Simple Login Process

access.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 database access.mdb If you change this name, then ensure that you also change the references to it in addinguserproc.asp and loginproc.asp

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:
userID which is an autonumber
Username which is a text field
Password which is also a text field
EmailAddress which is also a text field

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("
" & vbcrlf)Response.Write("<%Option explicit %>")%>

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

Non-Programming Jobs For a Computer Science Major? - Slashdot


Non-Programming Jobs For a Computer Science Major?
Slashdot - Jul 1, 2008
There can be a lot of scripting and programming in QA in the right environment and not just script monkeys that runs what they are told. ...


13 FriendFeed Tools for Twitter Refugees - Washington Post


13 FriendFeed Tools for Twitter Refugees
Washington Post, United States - Jun 30, 2008
Filter by Service is a Greasemonkey script that allows you to filter your timeline by service. It displays a box with all of the service icons, ...


Brendan Eich Discusses the Future of JavaScript - Slashdot


Brendan Eich Discusses the Future of JavaScript
Slashdot - Jun 23, 2008
Unfortunately, it is going to be a very log time until Javascript 2 is used in the real world. by vivin (671928) This site [ecmascript4.com] has an example ...


House Buying in Spain’s La Zagaleta - The Quirks of the Seriously Rich - Free press releases (press release)


House Buying in Spain’s La Zagaleta - The Quirks of the Seriously Rich
Free press releases (press release), UK - 17 hours ago
But even after ten years in the business I couldn’t foretell the script for some requests. Being flush with money can bring out the bizarre. ...


When Is a Self-Signed SSL Certificate Acceptable? - Slashdot


When Is a Self-Signed SSL Certificate Acceptable?
Slashdot - Jun 25, 2008
Click the login link in the top left and you'll be presented with a non-https page with a username and password on it. I've emailed them about it but they ...


Living luxuriously, Jackson still eyes original goal - SI.com


Living luxuriously, Jackson still eyes original goal
SI.com - 16 hours ago
Or the $110000 Audi R8, complete with signature "Rampage rims," parked in the driveway of his rented log cabin. And even his outlandish demands of ketchup. ...


Indiana Hospital Selects Single - ADVANCE


Indiana Hospital Selects Single
ADVANCE, PA - Jul 2, 2008
"I wanted to get to a point in our nursing areas where a nurse could log off the PC with one key. And if she came back within 15 or 20 minutes, ...


Microsoft touts trustworthy browsing with IE8 - Register


Microsoft touts trustworthy browsing with IE8
Register, UK - 20 hours ago
But the promise of technology that automatically blocks malicious script from executing, crucially without presenting a user with a potentially confusing ...


Virtual errands getting outsourced - Akron Beacon Journal


Virtual errands getting outsourced
Akron Beacon Journal, OH - 6 hours ago
They assume it's a script for a comedy, but it's a very real option.'' Ferriss said he realizes people might be wary of giving strangers their online ...


Securecrt 6.1 beta 2 - tweakers.net


Securecrt 6.1 beta 2
tweakers.net, Netherlands - 19 hours ago
It was not possible to map a key or button to "Trace Options" or "Raw Log Session". The recent scripts menu item MENU_SCRIPT_MRU_FILE1 did not work when ...


Great program to generate web statistics - Microsoft's Log Parser

Log parser is an amazing free command-line tool that can analyze all sorts of data. This page gives you a look at what you can do with log parser analyzing IIS logs. The script can be downloaded here:http://www.logparser.com/ , under the Feb 28 listing.


home FAQ How can I help feedback Contact