-1
클래식 ASP에서 machine.config의 값에 어떻게 액세스합니까? 어디서나 답변을 찾을 수 없습니다 .... 솔루션을 찾으려고 시작하는 법을 알지 못합니다 ....클래식 ASP에서 machine.config의 값에 어떻게 액세스합니까?
클래식 ASP에서 machine.config의 값에 어떻게 액세스합니까? 어디서나 답변을 찾을 수 없습니다 .... 솔루션을 찾으려고 시작하는 법을 알지 못합니다 ....클래식 ASP에서 machine.config의 값에 어떻게 액세스합니까?
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
%>