明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

在ASP中用程序控制彈出NTLM驗證窗口

[摘要]在ASP中用程序控制彈出NTLM驗證窗口簡介: 可以彈出NT驗證窗口,而不管目錄是否允許匿名訪問,很好用的一段代碼。 作者:亞豪 EMAIL: yahao@bigfoot.com 下載或訪問 <% Response.Status = "401 Unauthorized" ...

在ASP中用程序控制彈出NTLM驗證窗口
簡介: 可以彈出NT驗證窗口,而不管目錄是否允許匿名訪問,很好用的一段代碼。
作者:亞豪 EMAIL: yahao@bigfoot.com 下載或訪問
<%
Response.Status = "401 Unauthorized"
Response.AddHeader "WWW-Authenticate","NTLM"
response.write "user=" & Request.ServerVariables("LOGON_USER") & "<br>"
response.write "User login!"
response.end
%>