Re: How to change web.config login.aspx to something else?
From: Paul Wilson [MVP] (Paul@WilsonDotNet.com)
Date: 02/11/03
- Next message: JJ: "Security Error"
- Previous message: xmen: "How to change web.config login.aspx to something else?"
- In reply to: xmen: "How to change web.config login.aspx to something else?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
From: "Paul Wilson [MVP]" <Paul@WilsonDotNet.com> Date: Mon, 10 Feb 2003 22:18:31 -0500
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.web>
<authentication mode="Forms">
<forms loginUrl="Login.aspx" />
</authentication>
<authorization>
<allow users="?,*" />
</authorization>
</system.web>
<location path="Administrator">
<system.web>
<authorization>
<allow roles="Admin" />
<deny users="?,*" />
</authorization>
</system.web>
</location>
<configuration>
Thanks, Paul Wilson (MVP)
www.MicrosoftArchitect.com
- Next message: JJ: "Security Error"
- Previous message: xmen: "How to change web.config login.aspx to something else?"
- In reply to: xmen: "How to change web.config login.aspx to something else?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]