Hey! I'm using ASP.NET 3.5 and need to create two login pages to control access of users who are logged in to use e-commerce functionality as well as admin users that need to go in and maintain the content. The reason why I'd like to use two login pages in because they're effectively accessing two different areas and I actually need to validate login details from two different databases - main one for e- commerce users and another one for admin users. Currently,
<authentication mode="Forms"> <forms name="OclCOMMERCE.AUTH" cookieless="AutoDetect" loginUrl="~/ Login.aspx" protection="All" timeout="43200" path="/" requireSSL="false" slidingExpiration="true" defaultUrl="~/ default.aspx" enableCrossAppRedirects="false"/> </authentication> <anonymousIdentification enabled="true"/> <authorization> <allow users="*"/> </authorization> Any advice much appreciated!!
