Hi there,
I have no admin privilege, so I can't log in to IIS. My IT guys is not very familiar with IIS management either. At this moment, I can access a folder in the web serve (Mapped to my PC as drive H), I can also create sub folders and dump all sorts of files
there. The web site works fine. I have several main projects in their respective folder. One of them I need to set access control, so that only a few person in the company can get in. I've been playing around the web.config file under the folder:
<configuration>
<system.web>
<authorization>
<allow users="john" />
<deny users="?" />
</authorization>
</system.web>
But haven't got any luck yet. I have a hunch that this file alone may not be sufficient, I need the IIS be configured in certain way first. Can someone confirm this?
If so, what kind of configurati ...
Go to the complete details ...