在ASP中用程序控制弹出NTLM验证窗口
2020-12-13 02:43
标签:style color c com a rgb 在ASP中用程序控制弹出NTLM验证窗口 在ASP中用程序控制弹出NTLM验证窗口,搜素材,soscw.com 在ASP中用程序控制弹出NTLM验证窗口 标签:style color c com a rgb 原文地址:http://blog.csdn.net/bpvwj/article/details/25429219
简介: 可以弹出NT验证窗口,而不管目录是否允许匿名访问,很好用的一段代码。
作者:亚豪 EMAIL: yahao@bigfoot.com 下载或访问
Response.Status = "401 Unauthorized"
Response.AddHeader "WWW-Authenticate","NTLM"
response.write "user=" & Request.ServerVariables("LOGON_USER") & "
"
response.write "User login!"
response.end
%>