Ok ... I figured it out myself already. Looks like it was two things:
1. I had the NT groups feature still turned on (which does not work when only using Basic Auth).
2. I looked at a previous post (http://forum.snitz.com/forum/topic.asp?TOPIC_ID=56753) and found that editing NTAuthenticate() in inc_func_common.asp provides a fix. Here's what I changed:
if strAutoLogon="1" then
strNTUserFullName = Session(strCookieURL & "strNTUserFullName")
if Session(strCookieURL & "strNTUserFullName") = "" then
'Set strNTUserInfo = GetObject("WinNT://"+strNTUser)
'strNTUserFullName=strNTUserInfo.FullName
strNTUserFullName=Mid(strNTUser,(instr(1,strNTUser,"/")+1),len(strNTUser))
Session(strCookieURL & "strNTUserFullName") = strNTUserFullName
end if
end if
I commented out the two lines and added the new line setting strNTUserFullName based on the strNTUser.
Philip