Visual Basic .NET ?? ????? ???? ???? asp.NET ????????? ??? ???????-?????? ?????????? Implement ???? ????

???? ID: 308157 - ?? ???????? ?? ?????? ??? ?? ?? ???? ???? ???? ??.
??? ?? ??????? ???? | ??? ?? ??????? ????

?? ????? ??

??????

?? ???? ????????? ???? ?? ?? ???????????? ?? ???????? ???? ?? ??? ???? ??????? ?? ????? ???? ??? ???????-?????? ?????????? ?? ??????????? ???? ?? ??? ???? ?????

??????????

????? ???? outlines ???????? ?????????, ??????????, ??????? ??????, ?? ???? ???? ???:
  • Microsoft Visual Studio .NET
  • Microsoft SQL Server
  • Microsoft ??????? ?????????? ???????? (IIS) ??????? 5.0 ?? ??? ?? ???????

Visual Basic .NET ????? asp.NET ????????? ?????

  1. Visual Studio .NET ??????
  2. ??? ??? asp.NET ??? ????????? ?????, ?? ??? ?? ????? ????????? ?????

Web.config ???? ??? ??????? ???????? ???????? ????

????????? ???? ?? ?? ?????? ??? ?? ???? ?????? ?? ??????? ????<authentication></authentication>, ??<authorization></authorization>??????????? ???????? asp.NET ????????? ???????-?????? ?????????? ?? ????? ???? ?? ??? ???????? ???? ?? ??? ???
  1. ?????? Explorer ???, Web.config ????? ??????
  2. ?????????? ??? ??? ????????? ???????????.
  3. <forms>??? ???????? ????, ?? ??????? ????????? ????? (?? ????????? ?? ???? ??? ???? ??????? ?? ??? ?? ??????? MSDN ???????? ?? QuickStart ????????? ??? ????????</forms>????????????.) ????? ??? ?? ????????? ?????, ?? ???? ??? ????? ????HTML ?? ??? ??? ???????????? ?????????????? ??? ??? ???????<authentication></authentication>???? ??????:
    <authentication mode="Forms">
    	<forms name=".ASPXFORMSDEMO" loginUrl="logon.aspx" 
    	protection="All" path="/" timeout="30" />
    </authentication>
    					
  4. ??? ???? ?????????? ????? ?? ????????<authorization></authorization>?? ??? ??? ??????:
    <authorization>
    	<deny users ="?" />
    	<allow users = "*" />
    </authorization>
    					

?????????? ????? ?? ?????? ???? ?? ??? ?? ????? ??????? ?????? ?????

?? ?????? ??? ????????? ???? ?? ?? ?????????? ???, ???????, ?? ???????????? ?? ??? ?????? ?? ???????? ???? ?? ??? ??? ????? ??????? ????? ?? ??? ???? ????? ??? ??????? ??? ?????????? ????? ?????? ?? ???-?????? ??????? ?? ??????????? ???? ?? ??? ????? ???, ?? ??? ????? ?????? ???
  1. Windows ????????????? ??,?????, ?? ??? ???? ???????????????? ????? ???
  2. ????? SQL ????????? ??? ??????? ??? ?? ????-????? ????, ?? ???? ????????????. Notepad ???, ????? ???????????????? ?????????????? ????? ??? ??????? ???? ?? ???:
    if exists (select * from sysobjects where id = 
    object_id(N'[dbo].[Users]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
    drop table [dbo].[Users]
    GO
    CREATE TABLE [dbo].[Users] (
    	[uname] [varchar] (15) NOT NULL ,
    	[Pwd] [varchar] (25) NOT NULL ,
    	[userRole] [varchar] (25) NOT NULL ,
    ) ON [PRIMARY]
    GO
    ALTER TABLE [dbo].[Users] WITH NOCHECK ADD 
    	CONSTRAINT [PK_Users] PRIMARY KEY  NONCLUSTERED 
    	(
    		[uname]
    	)  ON [PRIMARY] 
    GO
    
    INSERT INTO Users values('user1','user1','Manager')
    INSERT INTO Users values('user2','user2','Admin')
    INSERT INTO Users values('user3','user3','User')
    GO
    					
  3. ????? ?? Users.sql ?? ??? ??? ???????
  4. Microsoft SQL Server ???????? ?? Users.sql ?????? ???????? ??? ?????? ??????? ?? ???? ?? ????? ????pubs, ?? ????????? ?????? ?? ?? ????? ???????????? ?? ?????? ????? ?? ?? ?? ????? ????????? ?? ??? ????? ???? ?? ??? Pubs ??????? ??? ?????? populates ???

??? Logon.aspx ????? ?????

  1. ????????? Logon.aspx ???? ?? ?? ??? ??????? ???????
  2. ?????? ??? Logon.aspx ????? ?????, ?? ????? ???? ?? ??? HTML ??????
  3. ????? ??? ?? ????????? ?????, ?? ?? ????? ????HTML ?? ??? ??? ????????? ???????????????? ?? ??? ??? ???????? ???? ?? ???<form>???:
    <h3>
       <font face="Verdana">Logon Page</font>
    </h3>
    <table>
       <tr>
          <td>Email:</td>
          <td><input id="txtUserName" type="text" runat="server"></td>
          <td><ASP:RequiredFieldValidator ControlToValidate="txtUserName"
               Display="Static" ErrorMessage="*" runat="server" 
               ID="vUserName" /></td>
       </tr>
       <tr>
          <td>Password:</td>
          <td><input id="txtUserPass" type="password" runat="server"></td>
          <td><ASP:RequiredFieldValidator ControlToValidate="txtUserPass"
              Display="Static" ErrorMessage="*" runat="server" 
              ID="vUserPass" />
          </td>
       </tr>
       <tr>
          <td>Persistent Cookie:</td>
          <td><ASP:CheckBox id="chkPersistCookie" runat="server" autopostback="false" /></td>
          <td></td>
       </tr>
    </table>
    <input type="submit" Value="Logon" runat="server" ID="cmdLogin"><p></p>
    <asp:Label id="lblMsg" ForeColor="red" Font-Name="Verdana" Font-Size="10" runat="server" />
    						
    ?? ??? ??????? ????? ????? ??????? ???????????? ?? ??? ?? ???? ?????????? ??? ?? ????????? ?? ??? ??? ?? ???? ?? ??? ??????? ?????? ?? ???? ??? ?? ???? ?? ??? ????? ???? ???? ???
  4. ?????? ????? ??? ????, ?? ????? ???????

????? ?????? ?? ???? ??? ?????????? ????????????? Validates ???

?? ??? ?? presents ??? behind-??? ????? (Logon.aspx.vb) ??? ??? ???
  1. Logon.aspx.vb ????? ??????
  2. ??? behind ????? ??? ?????? ???????? ???? ????:
    Imports System.Data.SqlClient
    Imports System.Web.Security
    					
  3. ????? ???ValidateUser??????? ??? ??? ?? ?????????? ????????????? ?? ????? ???? ?? ??? ????? ????? (????????? ???? ?? ???? ??????? ?? ????? ???? ?? ??? ??????? ???????? ?????????.)
    Private Function ValidateUser(ByVal userName As String, ByVal passWord As String) As Boolean
            Dim conn As SqlConnection
            Dim cmd As SqlCommand
            Dim lookupPassword As String
    
            lookupPassword = Nothing
    
            ' Check for an invalid userName.
            ' userName  must not be set to nothing and must be between one and 15 characters.
            If ((userName Is Nothing)) Then
                System.Diagnostics.Trace.WriteLine("[ValidateUser] Input validation of userName failed.")
                Return False
            End If
            If ((userName.Length = 0) Or (userName.Length > 15)) Then
                System.Diagnostics.Trace.WriteLine("[ValidateUser] Input validation of userName failed.")
                Return False
            End If
    
            ' Check for invalid passWord.
            ' passWord must not be set to nothing and must be between one and 25 characters.
            If (passWord Is Nothing) Then
                System.Diagnostics.Trace.WriteLine("[ValidateUser] Input validation of passWord failed.")
                Return False
            End If
            If ((passWord.Length = 0) Or (passWord.Length > 25)) Then
                System.Diagnostics.Trace.WriteLine("[ValidateUser] Input validation of passWord failed.")
                Return False
            End If
    
            Try
                ' Consult with your SQL Server administrator for an appropriate connection
                ' string to use to connect to your local SQL Server.
                conn = New SqlConnection("server=localhost;Integrated Security=SSPI;database=pubs")
                conn.Open()
    
                ' Create SqlCommand to select pwd field from the users table given a supplied userName.
                cmd = New SqlCommand("Select pwd from users where uname=@userName", conn)
                cmd.Parameters.Add("@userName", SqlDbType.VarChar, 25)
                cmd.Parameters("@userName").Value = userName
    
    
                ' Execute command and fetch pwd field into lookupPassword string.
                lookupPassword = cmd.ExecuteScalar()
    
                ' Cleanup command and connection objects.
                cmd.Dispose()
                conn.Dispose()
            Catch ex As Exception
                ' Add error handling here for debugging.
                ' This error message should not be sent back to the caller.
                System.Diagnostics.Trace.WriteLine("[ValidateUser] Exception " & ex.Message)
            End Try
    
            ' If no password found, return false.
            If (lookupPassword Is Nothing) Then
                ' You could write failed login attempts here to the event log for additional security.
                Return False
            End If
    
            ' Compare lookupPassword and input passWord by using a case-sensitive comparison.
            Return (String.Compare(lookupPassword, passWord, False) = 0)
    
    End Function
    					
  4. ?? ?? ??????? ??? ?? ?? ??????? ??????? ???? ????? ?? ??? ?? ??????? ??? ?? ??? ?????????? ?? ?????????????? ???? ?? ??? ????? ?? ???? ???cmdLogin_ServerClick?????? ????? ???????? ?? ??? ????? ??? ?? ?????? ????? ??? ??? ???? ???????? ?? ?????? ?????? ?? ?? ????? ?????
    • ???RedirectFromLoginPage?????? ?? ???? ?? ??????? ??????? ???? ????? ?? ??? ?? ??????? ??? ?? ??? ?????????? ?? ?????????????? ????cmdLogin_ServerClick?????:
      Private Sub cmdLogin_ServerClick(ByVal sender As Object, ByVal e As System.EventArgs) _
         Handles cmdLogin.ServerClick
         If ValidateUser(txtUserName.Value,txtUserPass.value) Then
            FormsAuthentication.RedirectFromLoginPage(txtUserName.Value, _
            chkPersistCookie.Checked)
         Else
            Response.Redirect("logon.aspx", True)
         End If
      End Sub
      						
    • ??????? ???? ?????, ??? ??????????, ???? ???? ?????, ??????????? ?? ??????, ?? ?????????? ?? ??? ???? ?? ???? ??? ?? ?? ???? ????? ??? ?? ???? ???????? ??? ?? ?? ?? ??? ????? ???? ????? ?? ???? ???FormsAuthenticationTicket?? ?????? ????
      Private Sub cmdLogin_ServerClick(ByVal sender As Object, _
         ByVal e As System.EventArgs) Handles cmdLogin.ServerClick
         If Validateuser(txtUserName.Value,txtUserPass.Value) Then
            Dim tkt As FormsAuthenticationTicket
            Dim cookiestr As String
            Dim ck As HttpCookie
      
            tkt = New FormsAuthenticationTicket(1, txtUserName.Value, DateTime.Now(), _
      dateTime.Now.AddMinutes(30), chkPersistCookie.Checked, "your custom data")
            cookiestr = FormsAuthentication.Encrypt(tkt)
            ck = new HttpCookie(FormsAuthentication.FormsCookieName(), cookiestr)
            if (chkPersistCookie.Checked) then ck.Expires=tkt.Expiration 
            ck.Path = FormsAuthentication.FormsCookiePath() 
            Response.Cookies.Add(ck)
      
            Dim strRedirect As String
            strRedirect = Request("ReturnURL")
            If strRedirect <> "" Then
               Response.Redirect(strRedirect, True)
            Else
               strRedirect = "default.aspx"
               Response.Redirect(strRedirect, True)
            End If
         Else
            Response.Redirect("logon.aspx", True)
         End If
      End Sub
      						

??? Default.aspx ????? ?????

?? ??? ?? ??? ?????????? ??? ?????????????? ?? ???????? ???? ?? ??? ?? ??????? ????? ????? ??? ?????????? ????????? ?? ???? ????? ??? ???? ?? ????? ?? ??? ??????? ????, ??? ?? ????? ?? ??? ?? ???? ?? ??? ?????????????? ????
  1. Default.aspx ?? ??? ??? ?????? WebForm1.aspx ????? ?? ??? ?????, ?? ?????? ?? ??????
  2. HTML ????? ??? ????, ?? ????? ??? ?? ??? ?? ????????? ?????<form>???:
    <input type="submit" Value="SignOut" runat="server" id="cmdSignOut">
    						
    ??????? ??????? ???? ??? ??? ?? ???? ?? ??? ?? ??? ?? ????? ???? ???? ???
  3. ?????? ????? ??? ????, ?? ????? ???????
  4. ??? behind ????? ??? ?????? ???????? ???? ????:
    Imports System.Web.Security
    					
  5. (Default.aspx.vb) ??? behind ????? ?????, ?? ??? ????? ??? ?? ????????? ?????cmdSignOut_ServerClick????? ??????:
    Private Sub cmdSignOut_ServerClick(ByVal sender As System.Object, ByVal e As System.EventArgs) _
    Handles cmdSignOut.ServerClick
       FormsAuthentication.SignOut()
       Response.Redirect("logon.aspx", True)
    End Sub
    					
  6. ?????? ?? ????????? ?? ?????? ????? ?? ????????? ?? ?? ????? ?? ???? ????

?????? ??????

  • ?? ?? ??????? ??? ???? ??????? ???????? ?? ???? ???? ?? ????? ?? ???? ???FormsAuthentication???? ?????? ?????? ?? ???HashPasswordForStoringInConfigFile?????????? ???? ?? ??? ???? ???? ??????? ?????? ?????? ??????? ?? ??????????? ????? ??? ???
  • ?? SQL ??????? ??????? ?????? ???????????? ????? (Web.config) ??? ?? ???? ?? ????? ?? ??????? ?? ???? ??? ?? ??? ?????? ?? ?? ?? ???? ????
  • ???? ??????? ?? ??? ?? ???? ?? ????? ?????? ?? ????? ???? ?? ?????? ???? ?? ?????? ?? ????? ?? ??? ??? ?????? ????? ?? ???? ??? ?????? ?? ???, ?? ????? ?????? ?? ???? ?? ?? ??? ??????? ????? ????? ?? ???? ???? ???????? ?? ??? ??????? ?????? ??? ?????????? ??? ?? ???? ?? ????, ??? ?? ?? ?????????? ?? ????? ???? ?? ??? ?? re-enables ???? ???? ?? ???? ???? ????? ?? ???? ?? ?? ???? ?????? ???? ?? ??? ?? ?? ?????????? ?? ???? ???? ?? ??? ??????? ??? ?? ???? ??? ???? ?? ??? ?? ????? In addition, you should add appropriate error handling wherever necessary.
  • Because the user is identified based on the authentication cookie, you may want to use Secure Sockets Layer (SSL) on this application so that no one can retrieve the authentication cookie and any other valuable information that is being transmitted.
  • Forms-based authentication requires that your client accept or enable cookies on their browser.
  • Thetimeout?? ????????<authentication></authentication>configuration section controls the interval at which the authentication cookie is regenerated. You can choose a value that provides better performance and security.
  • Certain intermediary proxies and caches on the Internet may cache Web server responses that contain Set-Cookie headers, which are then returned to a different user. Because forms-based authentication uses a cookie to authenticate users, this can cause users to accidentally (or intentionally) impersonate another user by receiving a cookie from an intermediary proxy or cache that was not originally intended for them.

??????

For information about implementing simple forms-based authentication by using the<credentials></credentials>section to store users and passwords, see the following article in the ASP.NET QuickStart samples:
Forms-Based Authentication
http://quickstarts.asp.net/QuickStartv20/aspnet/doc/security/formsauth.aspx
For information about implementing forms-based authentication by using an Extensible Markup Language (XML) file to store users and passwords, see the following topic in the .NET Framework Software Development Kit (SDK) documentation:
Forms Authentication Using An XML Users File
http://msdn2.microsoft.com/en-us/library/1b1y85bh(vs.71).aspx
For more information about ASP.NET Web application security, see the following article in the .NET Framework SDK documentation:
ASP.NET ??? ????????? ???????
(vs.71) http://msdn2.Microsoft.com/en-us/library/330a99hc .aspx
?? ???? ??? ???? ??????? ?? ???System.Web.Security????????, .NET Framework SDK ??? ?????????? ???? ????? ????????:
(vs.71) http://msdn2.Microsoft.com/en-us/library/SYSTEM.Web.Security .aspx
ASP.NET ??????????? ?? ???? ??? ???? ??????? ?? ??? ?????????? .NET Framework SDK ???? ?????:
ASP.NET ???????????
(VS.71) http://msdn2.Microsoft.com/en-us/library/aa719558 .aspx

ASP.NET ??????????? ????????
(vs.71) http://msdn2.Microsoft.com/en-us/library/w7w4sb0w .aspx
ASP.NET ??????? ????????????? ?? ??????? ?? ??? ????? MSDN ????? ???? ?????:
ASP.NET ??? ???????: .NET ??????? ??????????
HTTP://msdn2.Microsoft.com/en-us/library/ms978378.aspx
ASP.NET ?? ???? ??? ???? ??????? ??????? ?? ??? ????? MSDN ?????? ???? ?? ???????:
Microsoft.public.dotnet.Framework.aspnet
???? ??????? ?? ???, ????? ?????????? ?????:
Esposito, Dino.ASP.NET ?? ADO.NET ??? ??? ??????. Microsoft ?????, 2001?

Howard, Michael ?? ????? LeBlanc.???? ???????? ???. Microsoft ?????, 2001?

???

???? ID: 308157 - ????? ???????: 04 ?????? 2010 - ??????: 2.0
???? ???? ???? ??:
  • Microsoft ASP.NET 1.1
  • Microsoft ASP.NET 1.0
  • Microsoft Visual Basic .NET 2003 Standard Edition
  • Microsoft Visual Basic .NET 2002 Standard Edition
  • Microsoft SQL Server 2000 Standard Edition
  • Microsoft SQL Server 7.0 Standard Edition
??????: 
kbproductlink kbconfig kbhowtomaster kbsecurity kbweb kbmt KB308157 KbMthi
???? ?????? ????????
??????????: ?? ???? ?? ???? ??????? ?? ????? ?? Microsoft ????-?????? ?????????? ?????? ?????? ???? ??? ??. Microsoft ???? ??? ????-???????? ?? ????-???????? ????? ?????? ?? ???? ???????? ???? ?? ???? ????? ????? ??? ?? ??? ?????? ?? ???? ???? ???? ??? ????? ??. ???????, ????-???????? ???? ????? ???? ???? ???? ???. ?????, ????????, ?????-???? ?? ??????? ?? ???????? ?? ???? ???, ???? ?? ??? ?????? ???? ???? ??? ????? ??? ?? ???? ??. Microsoft ??????? ??? ???? ?? ?????? ?? ??????????, ????????? ?? ??? ?????? ?? ???? ????? ?? ???? ???????? ?? ??? ???? ????? ?? ??? ????????? ???? ??. Microsoft ????-?????? ?????????? ?? ????? ?????? ?? ?? ??? ??.
?????????? ?? ??????? ????????? ??????? ??:308157

??????????? ???