ASP.NET Security/Authentication question

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default ASP.NET Security/Authentication question

    I am a newbie on ASP.NET.
    I am creating an asp.net application (with C#) which will have a number of
    screens.
    The backend database for this app is SQL Server.
    The user is required to login and we have to be able to control which users
    have access to which screens and if they have read only or update access.

    I have just started reading about the different types of authentication for
    asp.net.
    Can anyone provide me with some direction as the best way to proceed.

    Terry


    Terry Guest

  2. Similar Questions and Discussions

    1. Security and authentication
      The bottom line is I don't know anything about either of these two areas. I've always been a client side interactive developer and designer, handing...
    2. WS-Security vs. IIS authentication
      Hi Sirs. When using WS-Security instead of IIS authentication I see a potential problem letting ALL people access my webService. ie. if I have a...
    3. windows authentication (webservice security)
      I'm using a lan with domain server under win200, and, in the same network, but in an other machine, i've installed a webservice. This second server...
    4. Authentication security help needed
      I am new to asp.net and c#. Only some web pages of my application need users to be logged in. How do I need to set the web.config to restrict only...
    5. Forms Security Authentication.
      Hi I have done all the plumbing for a Forms Authentication system. My user logs in, I chek password with ADO.NET to a database with 2 fields. ...
  3. #2

    Default Re: ASP.NET Security/Authentication question

    Hello Terry,

    at first - ask yourself the following question: will my users be stored as
    Windows accounts (AD or SAM) - or will they be stored in a custom store (e.g.
    SQL Server)

    if Windows - set <authentication mode="Windows" /> and make yourself familiar
    with IIS authentication types
    if Customer - set <authentication mode="Forms" /> and make yourself familiar
    with Forms Authentication

    ---------------------------------------
    Dominick Baier - DevelopMentor
    [url]http://www.leastprivilege.com[/url]
    > I am a newbie on ASP.NET.
    > I am creating an asp.net application (with C#) which will have a
    > number of
    > screens.
    > The backend database for this app is SQL Server.
    > The user is required to login and we have to be able to control which
    > users
    > have access to which screens and if they have read only or update
    > access.
    > I have just started reading about the different types of
    > authentication for
    > asp.net.
    > Can anyone provide me with some direction as the best way to proceed.
    > Terry
    >


    Dominick Baier [DevelopMentor] Guest

  4. #3

    Default Re: ASP.NET Security/Authentication question

    If I use IIS authentication, can I control which users have access to which
    forms and if they have read or full access?

    Terry
    "Dominick Baier [DevelopMentor]" <dbaier@pleasepleasenospamdevelop.com>
    wrote in message news:143254632466893878993430@news.microsoft.com.. .
    > Hello Terry,
    >
    > at first - ask yourself the following question: will my users be stored as
    > Windows accounts (AD or SAM) - or will they be stored in a custom store
    (e.g.
    > SQL Server)
    >
    > if Windows - set <authentication mode="Windows" /> and make yourself
    familiar
    > with IIS authentication types
    > if Customer - set <authentication mode="Forms" /> and make yourself
    familiar
    > with Forms Authentication
    >
    > ---------------------------------------
    > Dominick Baier - DevelopMentor
    > [url]http://www.leastprivilege.com[/url]
    >
    > > I am a newbie on ASP.NET.
    > > I am creating an asp.net application (with C#) which will have a
    > > number of
    > > screens.
    > > The backend database for this app is SQL Server.
    > > The user is required to login and we have to be able to control which
    > > users
    > > have access to which screens and if they have read only or update
    > > access.
    > > I have just started reading about the different types of
    > > authentication for
    > > asp.net.
    > > Can anyone provide me with some direction as the best way to proceed.
    > > Terry
    > >
    >
    >
    >

    Terry Guest

  5. #4

    Default Re: ASP.NET Security/Authentication question

    Sure - you have that control with all authentication mechanisms...it is only a question of storage and role management



    ---
    Dominick Baier - DevelopMentor
    [url]http://www.leastprivilege.com[/url]



    nntp://news.microsoft.com/microsoft.public.dotnet.framework.aspnet.security/<O0mOBM9KFHA.732@TK2MSFTNGP12.phx.gbl>

    If I use IIS authentication, can I control which users have access to which
    forms and if they have read or full access?

    Terry
    "Dominick Baier [DevelopMentor]" <dbaier@pleasepleasenospamdevelop.com>
    wrote in message news:143254632466893878993430@news.microsoft.com.. .
    > Hello Terry,
    >
    > at first - ask yourself the following question: will my users be stored as
    > Windows accounts (AD or SAM) - or will they be stored in a custom store
    (e.g.
    > SQL Server)
    >
    > if Windows - set <authentication mode="Windows" /> and make yourself
    familiar
    > with IIS authentication types
    > if Customer - set <authentication mode="Forms" /> and make yourself
    familiar
    > with Forms Authentication
    >
    > ---------------------------------------
    > Dominick Baier - DevelopMentor
    > [url]http://www.leastprivilege.com[/url]
    >
    > > I am a newbie on ASP.NET.
    > > I am creating an asp.net application (with C#) which will have a
    > > number of
    > > screens.
    > > The backend database for this app is SQL Server.
    > > The user is required to login and we have to be able to control which
    > > users
    > > have access to which screens and if they have read only or update
    > > access.
    > > I have just started reading about the different types of
    > > authentication for
    > > asp.net.
    > > Can anyone provide me with some direction as the best way to proceed.
    > > Terry
    > >
    >
    >
    >


    [microsoft.public.dotnet.framework.aspnet.security]
    Dominick Baier [DevelopMentor] Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139