如何在ASP中读取注册表的信息

通过 Windows Scripting object 的 Regread 方法,可以从注册表中读取信息。 

 

  下面的例子演示了如何得到 common files 的路径: 

<% 
Dim strPath 
strPath = "HKLM\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\COMMONFILESDIR" 
Set objShell = CreateObject("WScript.Shell") 
Response.Write "<b>Registry value(Common files dir):</b> " & objShell.RegRead(strPath)%> 

  键值要以 '\' 结尾

版权声明:
作者:Kiyo
链接:https://www.wkiyo.cn/html/2008-01/i52.html
来源:Kiyo's space
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>