Ok I made the change to the following 2 lines, and I am still not able to get this working. It still asks me to enter a UN and Password.
In the common.asp I changed :
'strLoggedInUserCode = Trim(Mid(Request.Cookies("Forum")("UserID"), 1, 44))
to
strLoggedInUserCode = Trim(Request.ServerVariables("AUTH_USER"))
and
strSQL = strSQL & "WHERE " & strDbTable & "Author.User_code = '" & strLoggedInUserCode & "';"
To
strSQL = strSQL & "WHERE " & strDbTable & "Author.Username = '" & strLoggedInUserCode & "';"
There is only one post in the forums when you look up Windows authentication. The comments are not very clear as to exactly which one to change.
Any ideas ?