如何从经典asp中的machine.config访问值?

时间:2017-11-16 07:40:55

标签: asp-classic machine.config

如何在经典asp中访问machine.config中的值? 我无法在任何地方找到答案.... 我甚至不知道如何开始尝试寻找解决方案......

1 个答案:

答案 0 :(得分:0)

使用TextStream对象。

示例:

<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")

Set f=fs.OpenTextFile(Server.MapPath("testread.txt"), 1)
Response.Write(f.ReadAll)
f.Close

Set f=Nothing
Set fs=Nothing
%>

https://www.w3schools.com/asp/asp_ref_textstream.asp