网络编程
位置:首页>> 网络编程>> Asp编程>> 如何使用ASP来读写注册表

如何使用ASP来读写注册表

作者:郁郁小蝎 来源:中国站长学院 发布时间:2007-09-20 13:08:00 

标签:注册表,asp

本文实例介绍了如何使用ASP代码来读写注册表,呵呵厉害吧!

 一个例子:

<%Dim ReadComputerName 
Set ReadComputerName=CreateObject("WScript.Shell") 
Dim ComputerName,RegPath 
RegPath="HKLM\System\CurrentControlSet\Control\ComputerName\ComputerName\ComputerName" 
ComputerName=ReadComputerName.RegRead(RegPath) 
response.write "计算机名为"&ComputerName %> 


第二个读的代码

<% 
Dim zcbpath 
zcbpath=request.form("zcbpath") 
if zcbpath<> "" then 
’zcbpath = "HKLM\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\COMMONFILESDIR" 
Set objShell = CreateObject("WScript.Shell") 
Response.Write objShell.RegRead(zcbpath) 
end if 
%> 
<form action="zcb.asp" method=post> 
注册表键值<input type=text name=zcbpath id=zcbpath> 
<input type=submit> 
</form> 


0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com