Hello,
At first, I apologize for my bad English I come from Germany.
I've already created a login page with solutions i found on Expert Exchange.
This is the code:
____
<%
on error resume next
Dim strDomain
Dim strADsPath
Dim strUserName
Dim strPassword
Dim iFlags
Dim errorcount
errorcount = 0
' force the domain
if Request.Form("Domain") <> "TESTGROUP" then
strDomain = Request.Form("Domain")
if strDomain = "" then strDomain = "TESTGROUP" end if
else
strDomain = "TESTGROUP"
end if
strADsPath = strDomain
iFlags = Request.Form("Flags")
strPassword = Request.Form("Password")
strUserName = Request.Form("UserName")
%>
<form action = "login.asp" method = "post" id=form1 name=form1>
<table width="100%" cellpadding="0" class=news1>
<tr align="left" valign="middle">
<td> </td>
<td class=news1><div align="right"><font class="news1"><strong><nob
r>Username
: </n
obr></stro
ng></font>
</div></td
>
<td> </td>
<td> <div align="left">
<input name=UserName type="text" id=UserName2 value="<%response.write strUserName%>" size="40">
</div></td>
</tr>
<tr align="left" valign="middle">
<td> </td>
<td class=news1><div align="right"><font class="news1"><strong>Pass
word:</str
ong></font
></div></t
d>
<td> </td>
<td> <div align="left">
<input type="password" id=Password2 name=Password size = 40 >
</div></td>
</tr>
<tr align="left" valign="middle">
<td> </td>
<td class=news1><div align="right"><font class="news1"><strong>Doma
in:</stron
g></font><
/div></td>
<td> </td>
<td> <div align="left"><font class="news1">TESTGROUP </font>
<input name=Domain type="hidden" id=Password3 value="<%response.write strDomain%>" size = 26 >
</div></td>
</tr>
<tr valign="top">
<td colspan="4"> </
td>
</tr>
<tr valign="top">
<td colspan="4"> <div align="center">
<input type="hidden" id=Flags2 name=Flags size = 10 value = 0>
<input type="submit" value=" Login " id=submit12 name=submit1>
<input type="reset" name="Reset" value=" Reset ">
</div></td>
</tr>
</table>
</form>
<%
if (not strUserName= "") then
strADsPath = "WinNT://" & strADsPath
Dim oADsObject
Dim tempstr
tempstr = strDomain & "\" & strUserName
Set oADsObject = GetObject(strADsPath)
Dim strADsNamespace
Dim oADsNamespace
strADsNamespace = left(strADsPath, instr(strADsPath, ":"))
set oADsNamespace = GetObject(strADsNamespace)
Set oADsObject = oADsNamespace.OpenDSObject
(strADsPat
h, tempstr, strPassword, 0)
if not (Err.number = 0) then
Response.Write "You did not enter the correct password<br> or username for the " & strDomain & " domain.<br>Please try again."
'response.write err.description & "<p>"
if err.number = -2147022987 then ' for account logout
Response.write "<strong>Your account has been logged out!</strong>"
end if
else
Set oContainer = GetObject("LDAP://CN=<user
name>,CN=u
sers,DC=TE
STGROUP,DC
=local")
for each oGroupName in oContainer.memberOf
gname = left(oGroupName,instr(oGro
upName,","
)-1)
gname = right(gname,len(gname) - 3)
if gname = "TEST" then
Session("Group") = gname
end if
next
Session("USER_LOGIN") = strUserName
Session("isLoggedIn") = True
Session("ValidUser") = True
response.redirect "index.asp"
end if
end if
%>
______
As far as I can succesfull Authenticate my username and password with Active Directory.
Now I want that only users of the security group "TEST" can successfully forwarded to "index.asp".
But how exactly do I have to modify the code?!
I hope you can help me
Many greetings
David
Start Free Trial