在ASP中用程序控制弹出NTLM验证窗口

时间:2014-05-10 04:35:01   收藏:0   阅读:314

在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 
%>

在ASP中用程序控制弹出NTLM验证窗口,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!