how to avoid authentication

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Konrad

    how to avoid authentication

    Hi

    All users should authenticate to reach
    some page. How to avoid this for some users.

    Thanks
    Konrad


  • Bassel Tabbara [MSFT]

    #2
    RE: how to avoid authentication

    Hello Konrad,
    It depends which type of authentication you are using. If it is Windows
    Authentication, you might need
    to create a Windows Groups and allow that group access, and the others
    require authentication.
    If you are using Form Authentication, you might need to use Role
    Authentication.
    Role-based security in ASP.NET is similar to the role-based security that
    Microsoft COM+ and
    Microsoft Transaction Server (MTS) use, although there are important
    differences. Role-based
    security in ASP.NET is not limited to Windows accounts and groups. For
    example, if Windows
    authentication and impersonation is enabled, the identity of the user is a
    Windows identity
    (User.Identity. Name = "Domain\usernam e"). You can check identities for
    membership in specific roles and restrict access accordingly. For example:
    If User.IsInRole(" BUILTIN\Adminis trators") Then
    Response.Write( "You are an Admin")
    Else If User.IsInRole(" BUILTIN\Users") then
    Response.Write( "You are a User")
    Else
    Response.Write( "Invalid user")
    End if


    If you are using Forms authentication, roles are not assigned to the
    authenticated user; you must do this programmaticall y. To assign roles to
    the
    authenticated user, use the OnAuthenticate event of the authentication
    module (which is the Forms
    authentication module in this example) to create a new GenericPrincipa l
    object and assign it to the
    User property of the HttpContext.

    For more information, you might refer to the following Kb article:
    306590 INFO: ASP.NET Security Overview
    Microsoft Support is here to help you with Microsoft products. Find how-to articles, videos, and training for Microsoft Copilot, Microsoft 365, Windows 11, Surface, and more.


    Thanks,
    Bassel Tabbara
    Microsoft, ASP.NET

    This posting is provided "AS IS", with no warranties, and confers no rights.


    --------------------
    | From: "Konrad" <konrad007@pocz ta.onet.pl>
    | Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
    | Subject: how to avoid authentication
    | Date: Wed, 25 Jun 2003 10:41:13 +0200
    | Organization: tp.internet - http://www.tpi.pl/
    | Lines: 9
    | Message-ID: <bdbn83$111$1@a tlantis.news.tp i.pl>
    | NNTP-Posting-Host: pj12.szczecin.s di.tpnet.pl
    | X-Trace: atlantis.news.t pi.pl 1056530500 1057 217.98.201.12 (25 Jun 2003
    08:41:40 GMT)
    | X-Complaints-To: usenet@tpi.pl
    | NNTP-Posting-Date: Wed, 25 Jun 2003 08:41:40 +0000 (UTC)
    | X-Priority: 3
    | X-MSMail-Priority: Normal
    | X-Newsreader: Microsoft Outlook Express 6.00.3790.0
    | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
    | Path:
    cpmsftngxa06.ph x.gbl!TK2MSFTNG P08.phx.gbl!new sfeed00.sul.t-online.de!t-onlin
    e.de!news-spur1.maxwell.s yr.edu!news.max well.syr.edu!ne wshosting.com!n ews-xf
    er2.atl.newshos ting.com!newsfe ed.news2me.com! newsfeed.tpinte rnet.pl!atlanti s
    ..news.tpi.pl!n ews.tpi.pl!not-for-mail
    | Xref: cpmsftngxa06.ph x.gbl microsoft.publi c.dotnet.framew ork.aspnet:1546 67
    | X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
    |
    | Hi
    |
    | All users should authenticate to reach
    | some page. How to avoid this for some users.
    |
    | Thanks
    | Konrad
    |
    |
    |


    Comment

    Working...