Ask a Question related to ASP.NET Security, Design and Development.
-
Celine #1
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 some forms?
Celine 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... -
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... -
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... -
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. ... -
help needed with security settings
yes I tried what you said, that doesnt work either, I verified that asp.dll is in the c:\windows\system32 \inetsrv directory, its all installed... -
Wes Henderson #2
Re: Authentication security help needed
Celine,
The simple way to do what you're asking is to create separate folders for
the forms that (do/don't) require authentication. Use an appropriate
web.config for each.
Regards,
Wes Henderson
In order to help everyone, please direct all replies to this newsgroup.
This posting is provided "AS IS" with no warranties, and confers no rights.
"Celine" <sqlprob@yahoo.fr> wrote in message
news:f34b6b7.0408211336.4bd72368@posting.google.co m...> 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 some forms?
Wes Henderson Guest
-
Paul Glavich [MVP - ASP.NET] #3
Re: Authentication security help needed
Use
<location path="SomeDir or page">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
in your web.config
--
- Paul Glavich
Microsoft MVP - ASP.NET
"Celine" <sqlprob@yahoo.fr> wrote in message
news:f34b6b7.0408211336.4bd72368@posting.google.co m...> 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 some forms?
Paul Glavich [MVP - ASP.NET] Guest



Reply With Quote

