Hi,
When i activate the authentication mode
<authentication mode="Forms">
<forms loginUrl="Login.aspx" timeout="20"/>
</authentication>
<authorization>
<deny users="?"/>
</authorization>
then atlas not work and get JavaScript Error, then i put the next lines in web.config
<location path="atlasglob.axd">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
<location path="WebResource.axd">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
<location path="SecurePages">
<system.web>
<authorization>
<allow roles="AuthenticatedUsers"/>
<deny users="*"/>
</authorization>
</system.web>
</location>
but the problem persist.
mi application only work without authentication mode.
please help me.