Menu

#1 forms login

open
nobody
None
5
2003-06-26
2003-06-26
No

Is there a way to use forms login instead of the default
windows login?

I can get the login form to display, I just don't see how
to direct it to a user table.

Or perhaps this is code I would need to add?

Terry

Discussion

  • Nobody/Anonymous

    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>

     
  • Scott Boland

    Scott Boland - 2003-11-04

    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.

     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.