Ask a Question related to ASP.NET Security, Design and Development.
-
Terry #1
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
-
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... -
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... -
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... -
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... -
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. ... -
Dominick Baier [DevelopMentor] #2
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
-
Terry #3
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.. .(e.g.> 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 storefamiliar> SQL Server)
>
> if Windows - set <authentication mode="Windows" /> and make yourselffamiliar> with IIS authentication types
> if Customer - set <authentication mode="Forms" /> and make yourself> 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
-
Dominick Baier [DevelopMentor] #4
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.. .(e.g.> 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 storefamiliar> SQL Server)
>
> if Windows - set <authentication mode="Windows" /> and make yourselffamiliar> with IIS authentication types
> if Customer - set <authentication mode="Forms" /> and make yourself> 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



Reply With Quote

