asp.net - 401 (Unauthorized) WebResource.axd -
i have website secured windows authentication , role provider, site has public section allows access anyone.
<location path="public"> <system.web> <authorization> <allow users="*" /> <allow users="?" /> </authorization> </system.web> </location>
the public page data entry page devexpress controls required field validation etc.
the page trying access webresource.axd , failing error: failed load resource: server responded status of 401 (unauthorized)
how can grant access webresource.axd public pages while maintaining permissions on rest of site?
try thing this.
<location path="path axd file"> <system.web> <authorization> <allow users="?" /> </authorization> </system.web> </location>
Comments
Post a Comment