簡體   English   中英

增加asp.net表單身份驗證的時間,即使我更改web.config文件中的時間也不起作用

[英]Increase the time of asp.net forms Authentication Even I change Time in web.config file its not working

以下是我正在使用表單身份驗證的Web.config文件代碼。 我增加了超時時間,但仍然在2分鍾內無法使用。我的應用程序再次自動注銷用戶必須再次登錄。

<?xml version="1.0" encoding="utf-8"?>
    <configuration>
      <configSections>
        <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
        <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
      </configSections>
      <connectionStrings>

        <add name="DBCS" connectionString="Data Source=105.55.191.106;Initial Catalog=Trucks;User ID=Girish;Password=Girish123!@#" />
        <add name="Truck_ManagementConnectionString" connectionString="Data Source=105.55.191.106;Initial Catalog=Trucks;User ID=Girish;Password=Girish123!@#;" providerName="System.Data.SqlClient" />
      </connectionStrings>
      <system.webServer>

        <defaultDocument>
          <files>
            <clear />
            <add value="HomeMain.aspx" />
          </files>
        </defaultDocument>
        <httpErrors errorMode="Detailed" />
        <asp scriptErrorSentToBrowser="true" />
        <validation validateIntegratedModeConfiguration="false" />
        <modules runAllManagedModulesForAllRequests="true">
          <remove name="UrlRoutingModule" />
          <add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
        </modules>
        <handlers>
          <add name="UrlRoutingHandler" preCondition="integratedMode" verb="*" path="UrlRouting.axd" type="System.Web.HttpForbiddenHandler, System.Web,   Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
        </handlers>
      </system.webServer>
      <system.web>
        <sessionState timeout="60" />
        <trace enabled="true" pageOutput="false" requestLimit="40" localOnly="false" />
        <customErrors mode="Off" />
        <authentication mode="Forms">
          <forms loginUrl="HomeMain.aspx"  timeout="2880" defaultUrl="NewtrucksValidations.aspx">
            <credentials passwordFormat="Clear">
              <user name="Rajesh" password="Rajesh" />
              <user name="Rajesh1" password="Rajesh1" />
            </credentials>
          </forms>
        </authentication>
        <authorization>
          <deny users="?" />
        </authorization>
        <compilation debug="true" targetFramework="4.0" />
        <pages buffer="true" enableEventValidation="false"></pages>
      </system.web>
      <system.net>

      </system.net>
      <appSettings>

        <add key="microsoft.visualstudio.teamsystems.aspnetdevserver:/dxfsd" value="2772;True;4952;1;-8587766731921818473" />
        <add key="microsoft.visualstudio.teamsystems.backupinfo" value="1;web.config.backup" />
        <add key="token" value="AFcWxV21C7fd0v3bYYYRCpSSRl31AZ8FkzH5YTJtR8RVkxY6oiRdbOtN" />
        <add key="paypalemail" value="akshithrajesh290-facilitator_api1.gmail.com" />
        <!--Here i used sandbox site url only if you hosted in live change sandbox to live paypal URL-->
        <add key="PayPalSubmitUrl" value="https://www.sandbox.paypal.com/cgi-bin/webscr" />
        <add key="FailedURL" value="http://localhost:49666/PayPalIntegration/Failed.aspx" />
        <!--Failed Page URL-->
        <add key="SuccessURL" value="http://localhost:49666/Default.aspx" />
        <!--Success Page URL-->
      </appSettings>
      <runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"></assemblyBinding>
      </runtime>
      <entityFramework>
        <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
          <parameters>
            <parameter value="v11.0" />
          </parameters>
        </defaultConnectionFactory>
        <providers>
          <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
        </providers>
      </entityFramework>
    </configuration>

可能是因為沒有指定machinekey 您可以嘗試一下-

應用程序池可以定期回收。 如果發生回收,ASP.NET將重新創建一個MachineKey ,如果web.config沒有指定的話。 機器密鑰用於生成身份驗證票證,因此新創建的機器密鑰使當前的身份驗證票證無效,從而導致用戶注銷。 解決方案是在web.config文件中添加<machinekey>部分。

<system.web>

<machineKey validationKey="19127329C4588866D1120D7146F4C6A7B53F29DBEF58F890" decryptionKey="789AA0B220798EF1780914BBE9CCB681C285F31680014162" validation="SHA1" />

</system.web>

有許多用於生成機器密鑰的工具。 您可以嘗試-http: //www.developerfusion.com/tools/generatemachinekey/

嘗試設置創建授權Cookie的時間:

    Private Sub CreateAuthorisationCookie(ByVal Role As String)
    ' Create and tuck away the cookie
    Dim authTicket As New FormsAuthenticationTicket(1, txtUsername.Text, _
                                                    DateTime.Now, _
                                                    DateTime.Now.AddMinutes(15), False, Role, FormsAuthentication.FormsCookiePath)
    Dim encTicket As String = FormsAuthentication.Encrypt(authTicket)
    Dim faCookie As New HttpCookie(FormsAuthentication.FormsCookieName, encTicket)
    Response.Cookies.Add(faCookie)

End Sub

自定義標識類導入System.Data

Imports System.Configuration

Imports System.Web

Imports System.Web.Security

Imports System.Web.UI

Imports System.Web.UI.WebControls

Imports System.Web.UI.WebControls.WebParts

Imports System.Web.UI.HtmlControls

Public Class CCustomIdentity
    Implements System.Security.Principal.IIdentity


    Private _ticket As FormsAuthenticationTicket

    Public Sub New(ticket As FormsAuthenticationTicket)



        _ticket = ticket
    End Sub

    Public ReadOnly Property AuthenticationType() As String Implements System.Security.Principal.IIdentity.AuthenticationType


        Get
            Return "Custom"
        End Get
    End Property


    Public ReadOnly Property IsAuthenticated() As Boolean Implements System.Security.Principal.IIdentity.IsAuthenticated


        Get
            Return True
        End Get
    End Property


    Public ReadOnly Property Name() As String Implements System.Security.Principal.IIdentity.Name


        Get
            Return _ticket.Name
        End Get
    End Property


    Public ReadOnly Property Ticket() As FormsAuthenticationTicket


        Get
            Return _ticket
        End Get
    End Property


    Public ReadOnly Property CompanyName() As String


        Get


            Dim userDataPieces As String() = _ticket.UserData.Split("|".ToCharArray())


            Return userDataPieces(0)
        End Get
    End Property


    Public ReadOnly Property Title() As String


        Get


            Dim userDataPieces As String() = _ticket.UserData.Split("|".ToCharArray())


            Return userDataPieces(1)
        End Get
    End Property


End Class

自定義校長班

Imports System.Data
Imports System.Configuration

Imports System.Web

Imports System.Web.Security

Imports System.Web.UI

Imports System.Web.UI.WebControls

Imports System.Web.UI.WebControls.WebParts
Imports System.Web.UI.HtmlControls

Public Class CCustomPrincipal
    Implements System.Security.Principal.IPrincipal


    Private _identity As CCustomIdentity

    Public Sub New(identity As CCustomIdentity)



        _identity = identity
    End Sub

    Public ReadOnly Property Identity() As System.Security.Principal.IIdentity Implements System.Security.Principal.IPrincipal.Identity


        Get
            Return _identity
        End Get
    End Property


    Public Function IsInRole(role As String) As Boolean Implements System.Security.Principal.IPrincipal.IsInRole


        Return False

    End Function

End Class

我的Global.asax方法

   Sub Application_AuthenticateRequest(ByVal sender As Object, ByVal e As EventArgs)
        ' Fires upon attempting to authenticate the use
        ' Get the authentication cookie
        Dim cookieName As String = FormsAuthentication.FormsCookieName
        Dim authCookie As HttpCookie = Context.Request.Cookies(cookieName)

        ' If the cookie can't be found, don't issue the ticket
        If authCookie Is Nothing Then
            Return
        End If

        ' Get the authentication ticket and rebuild the principal 
        ' & identity
        Dim authTicket As FormsAuthenticationTicket = FormsAuthentication.Decrypt(authCookie.Value)
        Dim roles As String() = authTicket.UserData.Split(New [Char]() {"|"c})
        Dim userIdentity As New GenericIdentity(authTicket.Name)
        Dim userPrincipal As New GenericPrincipal(userIdentity, roles)
        Context.User = userPrincipal
    End Sub

  Private Sub Global_asax_PostAuthenticateRequest(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.PostAuthenticateRequest
        ' Get a reference to the current User

        Dim usr As IPrincipal = HttpContext.Current.User

        ' If we are dealing with an authenticated forms authentication request

        If usr.Identity.IsAuthenticated AndAlso usr.Identity.AuthenticationType = "Forms" Then


            Dim fIdent As FormsIdentity = TryCast(usr.Identity, FormsIdentity)

            ' Create a CustomIdentity based on the FormsAuthenticationTicket  

            Dim ci As New CCustomIdentity(fIdent.Ticket)

            ' Create the CustomPrincipal

            Dim p As New CCustomPrincipal(ci)

            ' Attach the CustomPrincipal to HttpContext.User and Thread.CurrentPrincipal

            HttpContext.Current.User = p


            Threading.Thread.CurrentPrincipal = p
        End If
    End Sub

最后是我的主要Web.config

    <authentication mode="Forms">
  <forms loginUrl="~/Login.aspx" cookieless="UseCookies" name=".ASPXFORMSAUTH" protection="All" slidingExpiration="true" timeout="15" defaultUrl="~/Login.aspx">
    <!--SlidingExpiration=timeout reset with each request
              Timeout in minutes
              Protection=validation and encryption=ALL-->
  </forms>
</authentication>
<authorization>
  <deny users="?" />
</authorization>

這樣,我就可以控制超時了。 希望對您有幫助。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM