Groups > Asp .Net > ASP dotNET Security > Re: Forms Authentication




Forms Authentication

Forms Authentication
Tue, 1 Apr 2008 08:38:56 +0000
Hi,

    Am using forms Authentication, When the user trys to access a page without
going thru Login Page 

Obviously , the user will be redirected to login page, but the images in the
login page are not downloaded , Can anyone help me
Post Reply
Re: Forms Authentication
Tue, 1 Apr 2008 11:21:25 +0000
Just set the access to images folder to all users like this 

    <location path="images">
        <system.web>
            <authorization>
                <allow users="?"/>
            </authorization>
        </system.web>
    </location>
Post Reply
about | contact