ASP讀寫注冊表_ASP教程
教程Tag:暫無Tag,歡迎添加,賺取U幣!
推薦:ASP技巧:判斷遠程圖片是否存在以下為引用的內(nèi)容: function CheckURL(byval A_strUrl) set XMLHTTP = Server.CreateObject("Microsoft.XMLHTTP") XMLHTTP
一個例子:
以下為引用的內(nèi)容: <%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 %> |
以下為引用的內(nèi)容: <% 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> |
分享:ASP實現(xiàn)IE地址欄參數(shù)的判斷當(dāng)?shù)刂窓跊]有參數(shù)"id"時: 以下為引用的內(nèi)容: Request.QueryString["ID"] == null Convert.ToString(Request.QueryString["ID"]
相關(guān)ASP教程:
- 相關(guān)鏈接:
- 教程說明:
ASP教程-ASP讀寫注冊表。