Unfortunately I have added the correct lines in the web.config and I am still getting this error:
Error: syntax error
Source File: http://www.netploy.com/atlasglob.axd
Line: 2
Source Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">...
I made sure the following is in the 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>
My masterpage is in the root of the website and contains the scriptmanager and the ATLAS pages accessed, in a subfolder in my ASP.NET 2.0 web project that is only set to accept authenticated users, would that make a difference?
<location path="SecurePages">
<system.web>
<authorization>
<allow roles="AuthenticatedUsers"/>
<deny users="*"/>
</authorization>
</system.web>
</location>
Any help appreciated!
Etienne