Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Database Authentication

Status
Not open for further replies.

ozzroo

Technical User
Feb 28, 2003
182
0
0
AU
I have a login page which authenticates users against an sql database. If successful login, it redirects users to a subfolder called secure.

I have the following in a web.config file in the root folder. My login.aspx is also located in the root folder

Code:
<configuration>

<system.web>
   <globalization
	fileEncoding="utf-8"
	requestEncoding="utf-8"
	responseEncoding="utf-8"
	culture="en-GB"
	uiCulture="en-GB"
	
   />
   <customErrors mode="Off"/>
  <authentication mode="Forms">
      <forms name=".LoginForm" 
             loginUrl="login.aspx"
			 defaultUrl="secure/default.aspx" 
             protection="All" 
             timeout="30" 
             path="/"
			 /> 
    </authentication>
	<authorization>
	<allow users="*"/>
	</authorization>
  </system.web>
</configuration>

I also have another web.config file in the subfolder called secure.

Code:
 <configuration>
  <system.web>
   <globalization
	fileEncoding="utf-8"
	requestEncoding="utf-8"
	responseEncoding="utf-8"
	culture="en-GB"
	uiCulture="en-GB"
	
   />
   <customErrors mode="Off"/>
  	<authorization>
	<deny users="*"/>
	</authorization>

  </system.web>
</configuration>

My problem is, because the secured area has denied all users, after successful login, it redirects me back to login back and not to the secured area. What do i need to add in the web.config files to deny all anonymous users to the secured area, but allow successful logins from the login.aspx page
 
figured it out.

Had

Code:
<deny users="*"/>

instead of

Code:
<deny users="?"/>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top