G Guest Mar 31, 2006 #1 Is it possible to allow only anonymous users access to the contents of a folder, rather than all users?
Is it possible to allow only anonymous users access to the contents of a folder, rather than all users?
T Teemu Keiski Mar 31, 2006 #2 Hi, if by means of forms authentication it should be <allow users="?" /> in the web.config http://msdn2.microsoft.com/en-US/library/acsd09b0(VS.80).aspx
Hi, if by means of forms authentication it should be <allow users="?" /> in the web.config http://msdn2.microsoft.com/en-US/library/acsd09b0(VS.80).aspx
Z Zamdrist Mar 31, 2006 #3 Well, if you're not prompting them for a username and password, and you're not talking about integrated authentication on an Intranet...isn't that anonymous?
Well, if you're not prompting them for a username and password, and you're not talking about integrated authentication on an Intranet...isn't that anonymous?
G Guest Apr 1, 2006 #4 Teemu that backwards for umeet. This is the correct web.config to deny anominous users. <deny users="?"> <?xml version="1.0" encoding="utf-8"?> <configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0"> <system.web> <authorization> <deny users="?" /> </authorization> </system.web> </configuration> Good Luck DWS
Teemu that backwards for umeet. This is the correct web.config to deny anominous users. <deny users="?"> <?xml version="1.0" encoding="utf-8"?> <configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0"> <system.web> <authorization> <deny users="?" /> </authorization> </system.web> </configuration> Good Luck DWS
T Teemu Keiski Apr 3, 2006 #5 Yup, please read the original question. It was speficically asked to allow only anonymous ;-) Teemu