Authorization, Authentication in Web.config

anonymous_at_discussions.microsoft.com
Date: 11/03/03


Date: Mon, 3 Nov 2003 07:08:37 -0800

Hi

I am trying to ensure that users can only enter my Web
service on a specific Login web page.

I've amended Web.config so that authorization and
authentication are as follows:

    <authentication mode="Forms">
                <forms name="logincookie"
loginUrl="/LoginForm.aspx"/>
    </authentication>

and

    <authorization>
        <deny users="?"/>
    </authorization>

Then I build the solution.

When I go into Internet Explorer I find that I can still
go into another web page instead of being directed to the
LoginForm web page.

Any ideas?

Thanks in advance.
.