Ask a Question related to ASP.NET Security, Design and Development.
-
techno xxx via DotNetMonster.com #1
Applying security at folder level using forms authentication
Hi
I have two folders in the .net application,one can be accessed by everyone adn the other needs to be accessed only through submitting login and password.
I HAVE MY WEB.CONFIG FILE AS :say root is my application name
<authentication mode="Forms">
<forms path="/" loginUrl="logon.aspx">
</forms>
</authentication>
</location>
<location path="public">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
<location path="master">
<system.web>
<authorization>
<deny users="?"/>
</authorization>
</system.web>
</location>
I am trying to call an master/hello.aspx page from public/main.aspx using
Server.Transfer("/root/master/hello.aspx")
I am able to go to the hello page without being asked to enter my login details.
Can anyone help me in this regrad
thanks,
techno
--
Message posted via [url]http://www.dotnetmonster.com[/url]
techno xxx via DotNetMonster.com Guest
-
Folder level security Differences in Reader 8.0 && 9.0
Does the following message mean that my users will need to all be running on Acrobat Reader 9.0 ? I have some javascripts that work in Acrobat 9.0... -
Forms-Based Security below Application Level
If I have a site where I want to use Forms-Based security but only on one or two SUB-directories of the Application root, I'm confused about how... -
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. ... -
Forms Authentication for particular folder
Hi, I'm working on a webapplication, most part is for anonymous access, but for one part login is needed. All the files after login are in one... -
Protected folder with forms authentication
i have a VB.NET ASP.NET application. the front end is working fine, and know im developing the manager options. this options have to be in a...



Reply With Quote

