Login Control

partha.majumdar

Active member
Joined
Aug 13, 2006
Messages
33
Location
Kolkata
Programming Experience
10+
Dear Sir,

When I created my project, by default, it created the Login Page using the Login Control. Now, I want that I validate the login against data in my database. Where do I need to put my code for validating the username and password against the values in the database.

Also, how do I tell the control to understand when the login is successful and when it has failed?

Thanks and Regards,
Partha
 
Dear Sir/Madam,

I found the Oracle MEmbership provider by installing ODAC.

I included the following code in the web.config (as provided in the documentation).

<membership defaultProvider="OracleMembershipProvider">
<providers>
<clear/>
<add name="OracleMembershipProvider"
type="Oracle.Web.Security.OracleMembershipProvider,
Oracle.Web, Version=2.112.1.2, Culture=neutral,
PublicKeyToken=89b483f429c47342"
connectionStringName="OracleDataProvider"
applicationName="/"
enablePasswordRetrieval="false"
enablePasswordReset="true"
requiresQuestionAndAnswer="false"
requiresUniqueEmail="true"
passwordFormat="Hashed"
maxInvalidPasswordAttempts="4"
minRequiredPasswordLength="9"
passwordAttemptWindow="8"/>
</providers>
</membership>


Regards,
Partha
 
Back
Top