Apparently one has to change the authentication login, then
edit the web.config in order to put all the users into
place. I was mystified by this myself.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: NO
Form authentification :
In this case, you have to add the users directly in the
web.config file.
Here is a example of the web.config file :
<authentication mode="Forms" >
<forms name="RikiWiki" path="/" loginUrl="WikiLogin.aspx"
protection="All" timeout="30">
<credentials passwordFormat="Clear">
<user name="Guest" password="Guest" />
<user name="User" password="userPassword" />
</credentials>
</forms>
</authentication>
Logged In: YES
user_id=82848
Apparently one has to change the authentication login, then
edit the web.config in order to put all the users into
place. I was mystified by this myself.