0
我不知道是否有可能的官方方式或黑客檢索用戶當前登錄的ASP網頁上的選項「允許匿名用戶」的Windows登錄?或者使用導入的Windows DLL也許?如何在asp網頁上獲取windows登錄用戶?
我知道,通常與「拒絕匿名用戶」,我可以輕鬆地檢索登錄窗口。但由於某些特殊原因,我想檢索Windows登錄並接受匿名用戶。所以,如果Windows登錄是我的數據庫中的用戶,我將重定向到另一個網頁。
我已經ckecked是:(但windowsLogin ==總是空)
ASP的C#
string windowsLogin = System.Security.Principal.WindowsPrincipal.Current.Identity.Name;
string windowsLogin = System.Threading.Thread.CurrentPrincipal.Identity.Name;
string windowsLogin = System.Net.CredentialCache.DefaultCredentials.ToString();
string windowsLogin = Request.ServerVariables["LOGON_USER"].ToString();
的Web.config
<authorization>
<deny users ="?" /><!-- Deny acces to anonymous users-->
<allow users ="*" /><!-- Allow acces to every users-->
</authorization>
<identity impersonate="true"/>
<authentication mode="Forms">
<forms loginUrl="./WebLogin.aspx" defaultUrl="./default.aspx" timeout="12" path="/" name=".ASPXFORMSAUTH" slidingExpiration="true" />
</authentication>
這有什麼做與經典ASP - 它是一個.NET的問題 – John
感謝您對我加了標籤的評論淨。 –