服務(wù)端 VBScript 與 JScript 幾個相同特性的寫法與示例
更新時間:2007年03月24日 00:00:00 作者:
By shawl.qiu
摘要:
本文演示了ASP服務(wù)端腳本的幾個重要應(yīng)用.
目錄:
1. 遍歷集合/對象
1.1 VBScript 遍歷表單集合
1.2 JScript 遍歷表單集合
2. 轉(zhuǎn)變量值為變量, 并賦值
2.1 VBScript 轉(zhuǎn)變量值為變量并賦值
2.2 JScript 轉(zhuǎn)變量值為變量并賦值
3. 動態(tài)包含文件
3.1 VBScript 動態(tài)包含文件
3.2 JScript 動態(tài)包含文件
shawl.qiu
2006-10-11
http://blog.csdn.net/btbtd
1. 遍歷集合/對象
1.1 VBScript 遍歷表單集合
linenum
<%
for each temp in request.Form
response.write temp&": "&request.form(temp)
next
%>
1.2 JScript 遍歷表單集合
linenum
<%
for (var $e=new Enumerator(Request.Form); !$e.atEnd(); $e.moveNext()){
Response.Write($e.item()+':<br/> '+Request.Form($e.item()));
}
%>
2. 轉(zhuǎn)變量值為變量, 并賦值
2.1 VBScript 轉(zhuǎn)變量值為變量并賦值
linenum
<%
for each temp in request.Form
execute temp&"=request.form(temp)"
next
%>
2.2 JScript 轉(zhuǎn)變量值為變量并賦值
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. 動態(tài)包含文件
3.1 VBScript 動態(tài)包含文件
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 動態(tài)包含文件
linenum
<%
eval($dynInc('aj2.asp'));
Response.Write($test);
function $dynInc($fl){
/* ------------------------------------\
* 服務(wù)端 JScript 動態(tài)包含文件 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;
}
%>
摘要:
本文演示了ASP服務(wù)端腳本的幾個重要應(yīng)用.
目錄:
1. 遍歷集合/對象
1.1 VBScript 遍歷表單集合
1.2 JScript 遍歷表單集合
2. 轉(zhuǎn)變量值為變量, 并賦值
2.1 VBScript 轉(zhuǎn)變量值為變量并賦值
2.2 JScript 轉(zhuǎn)變量值為變量并賦值
3. 動態(tài)包含文件
3.1 VBScript 動態(tài)包含文件
3.2 JScript 動態(tài)包含文件
shawl.qiu
2006-10-11
http://blog.csdn.net/btbtd
1. 遍歷集合/對象
1.1 VBScript 遍歷表單集合
linenum
<%
for each temp in request.Form
response.write temp&": "&request.form(temp)
next
%>
1.2 JScript 遍歷表單集合
linenum
<%
for (var $e=new Enumerator(Request.Form); !$e.atEnd(); $e.moveNext()){
Response.Write($e.item()+':<br/> '+Request.Form($e.item()));
}
%>
2. 轉(zhuǎn)變量值為變量, 并賦值
2.1 VBScript 轉(zhuǎn)變量值為變量并賦值
linenum
<%
for each temp in request.Form
execute temp&"=request.form(temp)"
next
%>
2.2 JScript 轉(zhuǎn)變量值為變量并賦值
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. 動態(tài)包含文件
3.1 VBScript 動態(tài)包含文件
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 動態(tài)包含文件
linenum
<%
eval($dynInc('aj2.asp'));
Response.Write($test);
function $dynInc($fl){
/* ------------------------------------\
* 服務(wù)端 JScript 動態(tài)包含文件 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;
}
%>
相關(guān)文章
asp之自動閉合HTML/ubb標簽函數(shù)附簡單注釋
這樣的功能就是實現(xiàn)一般html,ubb標簽的閉合,以前在pjblog中見過,一直沒用,這個函數(shù)不錯,建議可以參考下pjblog中的函數(shù)。2009-01-01
實用301轉(zhuǎn)向到另一域名相應(yīng)頁面的asp代碼
據(jù)說,多域名同網(wǎng)站會被認為內(nèi)容重復,不利于搜索引擎中的排名。比較好的做法是,指定一個主域名,其它域名都轉(zhuǎn)向到此域名。2008-09-09
一個非常簡單的將半角轉(zhuǎn)換為中文的函數(shù)
一個非常簡單的將半角轉(zhuǎn)換為中文的函數(shù)...2006-09-09
實現(xiàn)UTF8轉(zhuǎn)換GB2312國標碼的asp代碼
ASP來實現(xiàn)UTF8轉(zhuǎn)換GB2312國標碼-GB2312轉(zhuǎn)UTF-8,需要的朋友可以參考下。2010-04-04

