服务端 VBScript 与 JScript 几个相同特性的写法与示例

时间:2021-05-18

Byshawl.qiu
摘要:
本文演示了ASP服务端脚本的几个重要应用.

目录:
1.遍历集合/对象
1.1VBScript遍历表单集合
1.2JScript遍历表单集合

2.转变量值为变量,并赋值
2.1VBScript转变量值为变量并赋值
2.2JScript转变量值为变量并赋值

3.动态包含文件
3.1VBScript动态包含文件
3.2JScript动态包含文件

shawl.qiu
2006-10-11
http://blog.csdn.net/btbtd

1.遍历集合/对象
1.1VBScript遍历表单集合

linenum
<%
foreachtempinrequest.Form
response.writetemp&":"&request.form(temp)
next
%>

1.2JScript遍历表单集合

linenum
<%
for(var$e=newEnumerator(Request.Form);!$e.atEnd();$e.moveNext()){
Response.Write($e.item()+':<br/>'+Request.Form($e.item()));
}
%>

2.转变量值为变量,并赋值
2.1VBScript转变量值为变量并赋值

linenum
<%
foreachtempinrequest.Form
executetemp&"=request.form(temp)"
next
%>

2.2JScript转变量值为变量并赋值

linenum
<%
var$xml=newActiveXObject("microsoft.xmldom");
$xml.load(Server.MapPath('config.xml'));
var$childNodes=$xml.documentElement.selectSingleNode('//siteconfig').childNodes

for($e=newEnumerator($childNodes);!$e.atEnd();$e.moveNext()){
eval($e.item().nodeName+"=$e.item().text");
}
$xml=null;
Response.Write(sitekeywords);
%>

3.动态包含文件
3.1VBScript动态包含文件

linenum
<%
functionfInclude(filepath)
'samplecall'''///executefInclude("include/system/language/"&sitefglang&"/main.asp")\\\'''
dimcnt
cnt=CreateObject("scripting.fileSystemObject").openTextFile(server.MapPath(filepath)).readall
cnt=replace(cnt,"<"&chr(37),"")
cnt=replace(cnt,chr(37)&">","")
fInclude=cnt
endfunction'shawl.qiucode'
executefInclude("include/system/language/"&sitefglang&"/main.asp")
%>

3.2JScript动态包含文件

linenum
<%
eval($dynInc('aj2.asp'));
Response.Write($test);

function$dynInc($fl){
/*------------------------------------\
*服务端JScript动态包含文件Byshawl.qiu
*samplecall:eval($dynInc('aj2.asp'));
\*------------------------------------*/
var$fso=newActiveXObject("scripting.fileSystemObject");
$str=$fso.OpenTextFile(Server.MapPath($fl)).ReadAll();
$str=$str.replace(/\<\%|\%\>/g,'');
$fso=null;
return$str;
}
%>

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章