Hi,
On my asp .net site, I want a login page so that when the user is logged in, a few extra links are made visible on the header control (.ascx). Also, there will only be about 4-6 users logging in here, I also want to give each one the ability to edit their own info from a database table. I have allready tried "Forms" authentication and this is what happens.
<authentication mode="Forms" />
<Forms name=".ASPXSession" loginUrl="FacLogin.aspx" protection="All" />
<credentials passwordFormat = "Clear">
<user name="admin" password="admin"/>
</credentials>
</forms>
</authentication>
Of course, this doesn't work, making me really quite angry and frustrated. The error message I receive is as follows:
Parser Error Message: Unrecognized configuration section 'forms'
There is little or no documentation on this error and I feel like killing myself someone.
Please help :sad: