서버 VBScript 와 JScript 의 몇 가지 같은 특성 을 가 진 쓰기 와 예제
'+Request.Form($e.item())); } %> 2. 변 환 량 값 을 변수 로, 병렬 값 2.1 VBScript 변 환 량 값 을 변수 로 하고 값 을 linenum 로 부여 합 니 다. <% for each temp in request.Form execute temp&"=request.form(temp)" next %> 2.2 JScript 변 환 량 값 을 변수 로 하고 값 을 linenum 로 부여 합 니 다. <% var $xml=new ActiveXObject("microsoft.xmldom"); $xml.load(Server.MapPath('config.xml')); var $childNodes=$xml.documentElement.selectSingleNode('//siteconfig').childNodes for ($e=new Enumerator($childNodes); !$e.atEnd(); $e.moveNext()){ eval($e.item().nodeName+"=$e.item().text"); } $xml=null; Response.Write(sitekeywords); %> 3. 동적 포함 파일 3.1 VBScript 동적 포함 파일 linenum <% function fInclude(filepath) ' sample call '''/// execute fInclude("include/system/language/"&sitefglang&"/main.asp") \\\''' dim cnt cnt=CreateObject("scripting.fileSystemObject").openTextFile(server.MapPath(filepath)).readall cnt=replace(cnt,"<"&chr(37),"") cnt=replace(cnt,chr(37)&">","") fInclude=cnt end function 'shawl.qiu code' execute fInclude("include/system/language/"&sitefglang&"/main.asp") %> 3.2 JScript 동적 포함 파일 linenum <% eval($dynInc('aj2.asp')); Response.Write($test); function $dynInc($fl){ /* ------------------------------------\ * 서버 JScript 동적 포함 파일 By shawl.qiu * sample call: eval($dynInc('aj2.asp')); \*------------------------------------*/ var $fso=new ActiveXObject("scripting.fileSystemObject"); $str=$fso.OpenTextFile(Server.MapPath($fl)).ReadAll(); $str=$str.replace(/\<\%|\%\>/g,''); $fso=null; return $str; } %>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
nginx log 인쇄 사용자 정의 헤더1. 클 라 이언 트 사용자 정의 헤더 클 라 이언 트 가 머리 를 사용자 정의 하면curl - H "wanwan: nihao 1111" 192.168.1.192: 8888, 그러면 nginx 서버 는 어떻게 표 시...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.