ASP Authentification
i want to create a login-system in ASP... for not developing something really new - i just thought - maybe i can use the existing AD-infrastructure...
are there any code-snippets available?
so whats needed?
- "default.asp(x)"
-- checks cookie (?) - if user/pw stored in cookie = OK => open "content.asp(x)" - this page will have some select-case things implemented... i.e. is the logged in user (from cookie) a member of groupA => then include "pageA.asp(x)" etc. => is the logged in user a member of groupB => then include "pageA.asp(x)" etc. etc.
Code:
Select Case whoRu
case groupA
'include a page "(pageA.asp(x)")
'or type sql-statement
case groupB
'include a page "(pageA.asp(x)")
'or type sql-statement
case else
'etc. etc.
end Select
View Replies
I need some simple component (COM+ or just DLL) source to perform Basic
Authentification for ASP solution.
Short explanation what I mean:
In non secure area I've a form with fields Login name and password. After
pressing submit button that component has to redirect to page in secure area
(https://) and perform NT Basic authentification [ or redirect to another
page saying about failing).
That has to be replacement of that standard 'green pop-up' asking to enter
loginname and password.
View Replies
View Related
I'm trying to bypass a Windows 2000 Integrated Windows Authentification within an ASP page...
Let me explain :
a user will login through a form on the web. The fields ar the username / password of an actual windows account on the server.
What i'm trying is to send the user to a secured folder and instead of the IWA popup, I want to "feed" the info of the user directly to the popup so he doesn't have to login through this popup. I should be all automatic..
View Replies
View Related