I am trying to log in through active directories in Perl (not ASP)! I am told you have to request the server variable LOGON_USER but it doesn't seem to work!
Code:
#!C:/Perl/bin/perl.exe
use CGI;
print "Content-type: text/html\n\n";
print $ENV{LOGON_USER};
Is this even possible to do in Perl or is this faulty code?