I have successfully created authentication solution (call it sol#1) against an existing Oracle database which encrypts/decrypts password. This soultion/project has a custom logon.aspx page which does authetication fine on its own. Now I want to use it for
authentication on all other solutions/projects but not finding a clear way of doing it.
Here is what I have done so far: Created a dll of the authentication solution (sol#1) I have created and added it as reference into another webapplication project (call it sol#2) where I want to use it. I have disabled the default membership authentication
of the asp.net as I want to use authentication solution I have developed by modifying web.config of this project. Here are troubling issues:
1. I have not seen a clean way of insatatiating the logon.aspx of sol#1's dll and using it into this calling vbproject.
2. Also, not clear on how the code of "authorization"& ...
Go to the complete details ...