작성 포맷 :
TEXT 모드, 자동 줄바꿈 사용
An error occurred on the server when processing the URL. Please contact the system administrator.
If you are the system administrator please click here to find out more about this error.
이런 오류가 나옵니다. 알려주세요.
<%
Set fsObj = Server.CreateObject("Scripting.FileSystemObject")
Dim filePath
filePath = Server.MapPath("\FileNameToRead")
Set fObj = fsObj.OpenTextFile(filePath,1)
content = fObj.readall
Response.write content
%>
|