山那边是海 发表于 2015-1-16 22:16:03

ASP编程:ASP有用函数库(5)

Windows本身的所有问题都会一成不变的也累加到了它的身上。安全性、稳定性、跨平台性都会因为与NT的捆绑而显现出来;函数Len()
 FUNCTION:前往字符串的长度.
 SYNTAX:Len(string|varName)
 ARGUMENTS: 
 EXAMPLE:<%
strTest="Thisisatest!"
response.writeLen(strTest)
%>
 RESULT:15
 
LTrim()
 FUNCTION:往失落字符串右边的空格.
 SYNTAX:LTrim(string)
 ARGUMENTS: 
 EXAMPLE:<%
strTest="Thisisatest!"
response.writeLTrim(strTest)
%>
 RESULT:Thisisatest!
 
Mid()
 FUNCTION:前往特定长度的字符串(从start入手下手,长度为length).
 SYNTAX:Mid(string,start[,length])
 ARGUMENTS: 
 EXAMPLE:<%
strTest="Thisisatest!TodayisMonday."
response.writeMid(strTest,17,5)
%>
 RESULT:Today
 
Minute()
 FUNCTION:前往工夫的分钏.
 SYNTAX:Minute(time)
 ARGUMENTS: 
 EXAMPLE:<%=Minute(#12:45:32PM#)%>
 RESULT:45
Month()
 FUNCTION:前往日期.
 SYNTAX:Month(date)
 ARGUMENTS:dateisanyvaliddateexpression.
 EXAMPLE:<%=Month(#08/04/99#)%>
 RESULT:8
 
MonthName()
 FUNCTION:Returnsastringidentifyingthespecifiedmonth.
 SYNTAX:MonthName(month,[,Abb])
 ARGUMENTS:monthisthenumericrepresentationforagivenmonth;Abb
(optional)isabooleanvalueusedtodisplaymonthabbreviation.True
willdisplaytheabbreviatedmonthnameandFalse(default)willnotshow
theabbreviation.
 EXAMPLE:<%=MonthName(Month(#08/04/99#))%>
 RESULT:August
 
Now()
 FUNCTION:Returnsthecurrentsystemdateandtime.
 SYNTAX:Now()
 ARGUMENTS:None
 EXAMPLE:<%=Now%>
 RESULT:8/4/999:30:16AM
 
Replace()
 FUNCTION:Returnsastringinwhichaspecifiedsub-stringhasbeen
replacedwithanothersubstringaspecifiednumberoftimes.
 SYNTAX:Replace(strToBeSearched,strSearchFor,strReplaceWith[,start
][,count][,compare]]])
 ARGUMENTS:strToBeSearchedisastringexpressioncontainingasub-
stringtobereplaced;strSearchForisthestringexpressiontosearchfor
withinstrToBeSearched;strReplaceWithisthestringexpressiontoreplace
sub-stringstrSearchFor;start(optional)isthenumericcharacter
positiontobeginsearch;count(optional)isavalueindicatingthe
comparisionconstant.
 EXAMPLE:<%
strTest="Thisisanapple!"
response.writeReplace(strTest,"apple","orange")
%>
 RESULT:Thisisanorange!
专业性的服务。有的ASP商提供垂直型的应用服务,针对某一特定行业提供应用服务。

仓酷云 发表于 2015-1-19 06:27:11

以HTML语言整合(HTML负责界面上,ASP则负责功能上)形成一个B/S(浏览器/服务器)模式的网页程序。

透明 发表于 2015-1-24 12:22:15

他的语法和设计思路和VB完全相同,导致很多ASP的书都留一句“相关内容请参考VB的相关教材....”更糟糕的是,相当多的ASP教程混合了Javascript,VBscript等等脚本语言,搞的初学者。

莫相离 发表于 2015-2-1 11:53:26

学习是为了用的,是为了让你的程序产生价值,把握住这个原则会比较轻松点。除此之外,课外时间一定要多参加一些社会实践活动,来锻炼自己的能力。

飘飘悠悠 发表于 2015-2-7 04:46:50

ASP也是这几种脚本语言中最简单易学的开发语言。但ASP也是这几种语言中唯一的一个不能很好支持跨平台的语言。  因为ASP脚本语言非常简单,因此其代码也简单易懂,结合HTML代码,可快速地完成网站的应用程序。

因胸联盟 发表于 2015-2-20 14:27:38

先学习用frontpage熟悉html编辑然后学习asp和vbscript建议买书进行系统学习

金色的骷髅 发表于 2015-3-6 18:25:00

Request:从字面上讲就是“请求”,因此这个是处理客户端提交的东东的,例如Resuest.Form,Request.QueryString,或者干脆Request("变量名")

蒙在股里 发表于 2015-3-13 05:10:44

多看多学多思。多看一些关于ASP的书籍,一方面可以扩展知识面一方面可以鉴借别人是如何掌握、运用ASP的;多学善于关注别人,向同学老师多多学习,不论知识的大小;多思则是要将学到的知识灵活运用。

分手快乐 发表于 2015-3-20 13:52:05

掌握asp的特性而且一定要知道为什么。
页: [1]
查看完整版本: ASP编程:ASP有用函数库(5)