I am running into an issue when using Forms Authentication for specific
files.  The problem is javascript can no longer find the namespaces.

I have this section in my webconfig -

    <location path="GolfRegister.aspx">
                <system.web>
                        <authorization>
                                <deny users="?"/>
                        </authorization>
                </system.web>
    </location>

This way people must login to access this page.  However I can no
longer use AJAX with this page because it doesn't seem to link the
namespaces.  From searching around I tried adding this to my webconfig
-

    <location path="ajaxpro">
                <system.web>
                 <authentication mode="None" />
                 <authorization>
                   <allow users="*"/>
                 </authorization>
                </system.web>
        </location>

But I still have the same issue.  Anyone run into this problem also?

Mat


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Ajax.NET Professional" group.

To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]

For more options, visit this group at http://groups.google.com/group/ajaxpro

The latest downloads of Ajax.NET Professional can be found at 
http://www.ajaxpro.info
-~----------~----~----~----~------~----~------~--~---

Reply via email to