Allow anonymous access only

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to allow only anonymous users access to the contents of a
folder, rather than all users?
 
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?
 
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
 
Yup, please read the original question. It was speficically asked to allow
only anonymous ;-)

Teemu
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top