Ask a Question related to ASP.NET Security, Design and Development.
-
Authorization, Authentication in Web.config
Hi
I am trying to ensure that users can only enter my Web
service on a specific Login web page.
I've amended Web.config so that authorization and
authentication are as follows:
<authentication mode="Forms">
<forms name="logincookie"
loginUrl="/LoginForm.aspx"/>
</authentication>
and
<authorization>
<deny users="?"/>
</authorization>
Then I build the solution.
When I go into Internet Explorer I find that I can still
go into another web page instead of being directed to the
LoginForm web page.
Any ideas?
Thanks in advance.
..
Guest
-
windows pass through authentication\authorization....
I have a requirement for a company intranet where they want to use a single sign-on with their windows 2003 domain (AD) so I was thinking of using... -
Secure authentication and authorization
Hello, I am new to asp.net and try to lean as much as can. I read all about from based authentication and cookie based authorization. In real... -
how to limit authorization in admin subfolder from web.config
I'm in quite of a dilemma, and for the first time: all the articles and discussion forums on the 'net hasn't helped me get rid of my page errors :(... -
Really confused about authorization/authentication methods in ASP.Net
I have been reading and reading the Microsoft best practices, articles on and on but still I can't figure out which method to chose to get started.... -
authentication and authorization in subfolders
Hello, I went through several posts and found out that it is only possible to have the authentication tag only at an app level but the... -
S Gopikrishna #2
Re : Authorization, Authentication in Web.config
Hi
Try using FormsAuthentication.RedirectFromLoginPage
method
The following link may be helpful to you
[url]http://www.4guysfromrolla.com/webtech/110701-1.3.shtml[/url]
-Gopi
the>-----Original Message-----
>Hi
>
>I am trying to ensure that users can only enter my Web
>service on a specific Login web page.
>
>I've amended Web.config so that authorization and
>authentication are as follows:
>
> <authentication mode="Forms">
> <forms name="logincookie"
>loginUrl="/LoginForm.aspx"/>
> </authentication>
>
>and
>
> <authorization>
> <deny users="?"/>
> </authorization>
>
>Then I build the solution.
>
>When I go into Internet Explorer I find that I can still
>go into another web page instead of being directed to>LoginForm web page.
>
>Any ideas?
>
>Thanks in advance.
>..
>
>
>.
>S Gopikrishna Guest



Reply With Quote

