RE: Page Authentication
- From: "kchalla" <kedar_challa@xxxxxxxxxxx>
- Date: Tue, 16 Aug 2005 17:15:02 -0700
HI,
We can bypass the Authentication by giving the location in web.config file
like below.
I hope this will work for u.
<location path="Login.aspx">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
"js" wrote:
> I am building a intranet site that has public and private information
> that are rendered by ASP.Net pages. The site is not partitioned into
> private/public folders. When users hit the site's URL, no
> authentication is needed. When the users click a logon button, a
> Windows logon dialog box should show up. Right now the Windows logon
> dialog box appears as soon as the browse hit the URL. How can I use
> page level authentication, instead of site level authentication without
> using ASP.Net Forms authentication provider? The following are
> authentication configurations in the IIS6 and ASP.Net web.config:
>
> II6:
> Enable anonymous access (disabled)
> Integrated Windows authentication (enabled)
> Enable default content page (enabled and with main.aspx,
> underConstruction.aspx in the list)
>
> Web.config:
> <authentication mode="Windows" />
> <authorization>
> <allow users="*" />
> </authorization>
>
>
.
- Follow-Ups:
- Re: Page Authentication
- From: js
- Re: Page Authentication
- References:
- Page Authentication
- From: js
- Page Authentication
- Prev by Date: client-side controls and server-side code
- Next by Date: Re: Handling Custom Errors 401.2
- Previous by thread: Page Authentication
- Next by thread: Re: Page Authentication
- Index(es):
Relevant Pages
|