當(dāng)前位置:首頁文章首頁 IT學(xué)院 IT技術(shù)

最新整理站長建站常用的SQL和ASP技巧大全免費(fèi)分享

作者:  來源:  發(fā)布時間:2011-7-10 11:20:50  點(diǎn)擊:
');"
response.write"java script:history.go(-1)</SCRIPT>"
'response.redirect "biglist.asp"
'response.write"this.location.href='index.asp';</SCRIPT>" 
'response.redirect request.servervariables("http_referer")
response.end


常用命令
兩個表循環(huán)
<%
dim crs1
dim csql1
Set crs1= Server.CreateObject("ADODB.Recordset") 
csql1="select * from commercetype" 
crs1.open csql1,conn,1,1
%>
<%do while not crs1.eof%>
<%
Set all= Server.CreateObject("ADODB.Recordset")
csql1="select * from Commerce where Typeid="&crs1("Typeid")
all.open csql1,conn,1,1

%>
<td width="20%" height=17 bgcolor="#E4F4FC" valign=middle>
<font color=red>
<%if not all.eof then%>
<%=all.recordcount%>
<%else%>
0
<%end if%>
</font>
</td>
<%
crs1.movenext
loop
%>

去掉太長的錄入文字:
<td style="word-wrap:break-word;word-break:break-all;">
<%=ltrim(arr(j))%>

去掉左空格
instr(request.form("t"),",")>0
查驗(yàn)是否有,號
arr=split(request.form("t"),",")
去掉,并付值給arr
ubound(arr)
個數(shù)

ASP函數(shù)介紹

??
??1. 函數(shù)array() 功能:創(chuàng)建一個數(shù)組變量 格式:array(list) 參數(shù):list 為數(shù)組變量中的每個數(shù)值列,中間用逗號間隔 例子: 結(jié)果: i 被賦予為數(shù)組
??
??2. 函數(shù)Cint() 功能:將一表達(dá)式/其它類型的變量轉(zhuǎn)換成整數(shù)類型(int) 格式:Cint(expression) 參數(shù):expression 是任何有效的表達(dá)式/其它類型的變量 例子: 結(jié)果: 236 函數(shù)Cint()將字符"234"轉(zhuǎn)換 成整數(shù)234.如果表達(dá)式為空, 或者無效時,返回值為0;
??
??
??3. 函數(shù):Creatobject() 功能:創(chuàng)建及返回一個ActiveX對象. 格式:Creatobject(obname) 參數(shù):obname 是對象的名稱 例子: 結(jié)果:
??
??4. 函數(shù)Cstr() 功能:將一表達(dá)式/其它類型的變量轉(zhuǎn)換成字符類型(string) 格式:Cstr(expression) 參數(shù):expression是任何有效的表達(dá)式/其它類型的變量 例子: 結(jié)果:函數(shù)Cstr()將整數(shù) 5 轉(zhuǎn)換 成字符"5".
??
??5. 函數(shù)Date() 功能:返回當(dāng)前系統(tǒng)(server端)的日期 格式:Date() 參數(shù):無 例子<% date () %> 結(jié)果:05/10/00
??
??
??6. #.函數(shù)Dateadd() 功能:計算某個指定的時間和 格式:dateadd(timeinterval,number,date) 參數(shù):timeinterval是時間單位(月,日..); number是時間間隔值,date是時間始點(diǎn). 例子: 結(jié)果: 11/4/99 3:34:45 PM 其中 "m" = "month"; "d" = "day"; 如果是currentDate 格式,則, "h" = "hour"; "s" = "second";
??
??7. #.函數(shù)Datediff() 功能:計算某量個指定的時間差 格式:datediff(timeinterval,date1,date2[,firstdayofweek[,firstdayofyear>) 參數(shù):timeinterval 是時間單位; date1,date2是有效的日期表達(dá)式,firstdayofweek,firstdayofyear 是任意選項(xiàng). 例子: 結(jié)果:There are 150 days to millenium from 8/4/99.
??
??8. #.函數(shù)day() 功能:返回一個整數(shù)值,對應(yīng)于某月的某日 格式:day(date) 參數(shù):date是一個有效的日期表達(dá)式; 例子lt;% =date(#8/4/99#) %> 結(jié)果:4
??
??
??9. #.函數(shù)formatcurrency() 功能:轉(zhuǎn)換成貨幣格式 格式:formatcurrency(expression [,digit[,leadingdigit[,paren[,groupdigit>>) 參數(shù):expression 是有效的數(shù)字表達(dá)式;digit表示小數(shù)點(diǎn)后的位數(shù);leadingdigit,paren,groupdigit是任意選項(xiàng). 例子lt;%=FormatCurrency(34.3456)%> 結(jié)果34.35
??10. #.函數(shù)Formatdatetime() 功能:格式化日期表達(dá)式/變量 格式:formatdatetime(date[,nameformat]) 參數(shù):date為有效的日期表達(dá)式/變量;nameformat是指定的日期格式常量名稱. 例子lt;% =formatdatetime("08/04/99",vblongdate) %> 結(jié)果:Wednesday,August 04,1999
??
??11. #.函數(shù)Isnumeric() 功能:返回一個布爾值,判斷變量是否為數(shù)字變量,或者是可以轉(zhuǎn)換成數(shù)字的其它變量. 格式:isnumeric(expression) 參數(shù):expression 是任意的變量. 例子: 結(jié)果: true.
??
??12. #.函數(shù)Isobject() 功能:返回一個布爾值,判斷變量是否為對象的變量, 格式:isobject(expression) 參數(shù):expression 是任意的變量. 例子: 結(jié)果: true
??
??
??13. #.函數(shù):Lbound() 功能:返回一個數(shù)組的下界. 格式:Lbound(arrayname[,dimension]) 參數(shù):arrayname 是數(shù)組變量,dimension 是任意項(xiàng) 例子: 結(jié)果:0
??
??14. #.函數(shù)Lcase() 功能:將一字符類型變量的字符全部變換小寫字符. 格式:Lcase(string) 參數(shù):string是字符串變量 例子: 結(jié)果:this is lcase!
??
??
??15. #.函數(shù)left() 功能:截取一個字符串的前部分; 格式:left(string,length) 參數(shù):string字符串,length截取的長度. 例子: 結(jié)果:this i
??
??16. #.函數(shù)len() 功能:返回字符串長度或者變量的字節(jié)長度 格式:len(string |varname) 參數(shù):string字符串;varname任意的變量名稱 例子: 結(jié)果:15
??
??
??17. #.函數(shù)ltrim() 功能:去掉字符串前的空格. 格式:ltrim(string) 參數(shù):string 字符串. 例子: 結(jié)果:Today
??
??
??19. #.函數(shù)minute() 功能:返回一數(shù)值, 表示分鐘 格式:minute(time) 參數(shù): time是時間變量 例子lt;% =minute(#12:23:34#) %> 結(jié)果:23
??
??20. #.函數(shù)month() 功能:返回一數(shù)值, 表示月份 格式:month(time) 參數(shù):time是日期變量 例子lt;% =month(#08/09/99) %> 結(jié)果:9
??
??
??21. #.函數(shù)monthname() 功能:返回月份的字符串(名稱). 格式:Monthname(date [,abb]) 參數(shù):date是日期變量,abb=true時 則月份的縮寫, 例子: 結(jié)果:April
??
??22. #.函數(shù)Now() 功能:返回系統(tǒng)的當(dāng)前時間和日期. 格式:now() 參數(shù):無 例子: 結(jié)果: 05/10/00 8:45:32 pm
??
??
??23. #.函數(shù):replace() 功能:在字符串中查找,替代指定的字符串. 格式:replace(strtobesearched,strsearchfor,strreplacewith [,start[,count[,compare>]) 參數(shù):strtobesearched是字符串; strsearchfor是被查找的子字符串;strreplacewith 是用來替代的子字符串.start,count,compare 是任意選項(xiàng). 例子: 結(jié)果:this is an orange.
??
??24. #.函數(shù)right() 功能:截取一個字符串的后部分 格式:right(string,length) 參數(shù):string字符串,length截取的長度. 例子: 結(jié)果:st!
首頁 上一頁 [1] [2] [3]  下一頁 尾頁

相關(guān)軟件

相關(guān)文章

文章評論

欄目導(dǎo)航

本類熱門

本類推薦

本站熱門

本站推薦

軟件按字母排列: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z