Web site security. Learn to apply security to your site whether it be password protection for a single page or an entire site these tutorials will help you with this.
This tutorial, which uses ASP, illustrates using a database (in this case Access) to store User Names and Passwords, and accessing the database to allow or deny access to the pages in question.
In a corporate intranet environment, you are often required to identify the user currently accessing your Internet Information Server (IIS) to make decisions about assigning appropriate user rights to access resources. In this paper we will share our approach for solving this problem.
So you're running your web site and all of a sudden you think 'Hey, what if we had an area that only certain people could get into....now that would be cool!' So how do you do it?
Here in this script we are going to make a simple security measure that requires people to login to access protected pages. It does this by recieving the user's username and password and checking it against an Access database to see whether it's valid
In this article I will show you how to authenticate users so as to protect pages from being seen without permission. It uses a set of ASP files that will be included to each page that needs protection.
One of the major drawbacks in using Active Server Pages is that the code you create cannot be compiled. Although this is a serious concern for many ASP users, Microsoft have only indicated a minor priority in dealing with the issue.
Create a system to restrict access to an entire web site or any number of pages in the web site based on a client's IP address or with a user name and password authenticated through a database. First let's do restriction by IP address first
Even better than restricting access by an IP address is restriction using session variables, a user name and password. We ask a client for a user name and a password and if they are verified, the page text is displayed otherwise the page is not allowed to be viewed until proper credentials are entered