Mar
15
2006
Changing loginname and password
Posted by admin under
Documentation

This is also done with modifying the web.config file:
<authentication mode="Forms">
<forms name="mylogin" loginUrl="admin/login.aspx">
<credentials passwordFormat="Clear">
<user name="admin" password="secret" />
</credentials>
</forms>
</authentication>
Just change the user name and password and save the file.