Click here to Skip to main content
15,885,278 members
Articles / Web Development / HTML

A Single File Login Page for ASP.NET

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
19 Aug 2012CPOL2 min read 109.4K   19   3
A single file login page for ASP.NET

Sometimes, you might feel the need to simply protect a public directory on your webserver. Using IIS gives you several options to achieve this, but today we will discuss how to enable a simple login page that requires only one file and a few entries in web.config.

First of all, I used the login page created by Alen Grakalic he created a great CSS3 Login page with validation, and everything in a single file. Perfect, that's just what we needed to create a simple drop in login page for IIS using ASP.NET.

The final result will look something like this:

 

To install it, just copy the contents of the zip attached to this post to your IIS webserver. Make sure that your application pool is configured to run under ASP.NET 4.0.

To edit the user accounts, open the web.config file and find the credentials section, where you can edit the user accounts that are allowed to log in. Pay special attention to this section in web.config:

XML
<system.webServer>
    <validation validateIntegratedModeConfiguration="false" />
    <modules runAllManagedModulesForAllRequests="true"></modules>
  </system.webServer>

This section makes sure that if you have files in the public directory that are not handled by ASP.NET (e.g. html/text/image files) are protected as well.

This section is also quite important as it denies anonymous users access to your content:

XML
<authorization>
   <deny users="?" />
</authorization>

With the proper configuration, this solution is secure, and it's not easy to circumvent the login mechanism. The login logic is provided by ASP.NET, and has been thoroughly tested by Microsoft and developers all around the world. Of course, this is just an example and I'm in not responsible for the security of your content, always do some tests!

For a demo go to http://demos.michaelwullink.com/login/login.aspx.

You can login with the accounts:

username: user1
password: secret

username: admin
password: secret#23

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Dexchange Outsourcing
Netherlands Netherlands
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 5 Pin
Christopher Sommers23-Aug-12 14:16
Christopher Sommers23-Aug-12 14:16 
QuestionAttachments Pin
tlhogi.mmusi9-Nov-11 1:38
tlhogi.mmusi9-Nov-11 1:38 
AnswerRe: Attachments Pin
wullinkm9-Nov-11 1:41
wullinkm9-Nov-11 1:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.