Hi,
I am having two different logins on my website.
One for the admins to update teh CMS, other I am creating is to provide our 3rd party, access to the files, but are not to be included in the CMS.
So I need to have two forms in my web.config; currently this is my entry in the web config:
<authentication mode="Forms">
<forms name="appNameAuth" loginUrl="default.aspx" defaultUrl="start.aspx" protection="Validation" />
<forms loginUrl="VenLogin.aspx" name="MY_AUTH" slidingExpiration="true" timeout="20"/>
</authentication>
But it give the following error:
Parser Error Message: The element <forms> may only appear once in this section.
So How can I merge them or resolve this issue.
Thanks