Skip navigation

Your First-Tiered ASP.Net Web Application (Part 3) - 23 Jul 2002

This is the third article of a multipart series that will walk you through setting up a typical merchant storefront website. It is intended to give a very quick walkthrough using Visual Studio.Net and demonstrate how quickly a three tiered web application can be created.  The third installment walks through the user login system and some very simple ASP.NET security.

ASP.NET security comes in three flavors: Windows authentication, Microsoft Passport, and Forms authentication. Windows authentication uses existing Windows user accounts and is often a good choice for intranets with a fixed number of users. Passport is centralized authentication service provided by Microsoft and is already implemented with Hotmail and MSN. Unfortunately, at this time, there is no native code for Passport in .NET for the backend implementation. Until Microsoft releases a native .NET package, implementing Passport requires using a wrapper for a COM object in order use. (Please correct me if I am wrong.) This leaves Forms authentication as our best option at the moment for a public user registration system.

Click Here for the entire .pdf.

Hide comments

Comments

  • Allowed HTML tags: <em> <strong> <blockquote> <br> <p>

Plain text

  • No HTML tags allowed.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.
Publish