ASP教程之ASP中的函数使用办法及使用举例(二)
缺点:安全性不是太差了,还行,只要你充分利用系统自带的工具;唯一缺点就是执行效率慢,如何进行网站优化以后,效果会比较好。函数|函数21.IsObject()FUNCTION:Returnsabooleanvalueindicatingwhetheranexpressionreferstoanautomationobject.
SYNTAX:IsObject(expression)
ARGUMENTS:expressionisanyvalidexpression.
EXAMPLE:<%
Setcon=Server.CreateObject("ADODB.Connection")
response.writeIsObject(con)
%>
RESULT:True
-------------------------------------
22.LBound()
FUNCTION:Returnsthebaseindexvalueforadimensionofanyarray.
SYNTAX:Lbound(arrayname[,dimension])
ARGUMENTS:arraynameisthenameofanyarray;dimensionisanoptionalnumberindicatingthedimension
tofindthelowerbound.
EXAMPLE:<%
i=Array("Monday","Tuesday","Wednesday")
response.writeLBound(i)
%>
RESULT:0
-------------------------------------
23.LCase()
FUNCTION:Returnsastringthathasbeenconvertedintolowercasecharacters.
SYNTAX:Lcase(string)
ARGUMENTS:stringisanyvalidstringexpression.
EXAMPLE:<%
strTest="Thisisatest!"
response.writeLCase(strTest)
%>
RESULT:thisisatest!
-------------------------------------
24.Left()
FUNCTION:Returnsthenumberofcharactersfromtheleftsideofastring.
SYNTAX:Left(string,length)
ARGUMENTS:stringisanyvalidstringexpression;lengthisthelengthofcharacterstoreturn.
EXAMPLE:<%
strTest="Thisisatest!"
response.writeLeft(strTest,3)
%>
RESULT:Thi
-------------------------------------
25.Len()
FUNCTION:Returnsthenumberofcharactersinastringorthenumberofbytesrequiredtostorea
variable.
SYNTAX:Len(string|varName)
ARGUMENTS:stringisanyvalidstringexpression;varNameisanyvalidvariablename.
EXAMPLE:<%
strTest="Thisisatest!"
response.writeLen(strTest)
%>
RESULT:15
(ThetotallengthofstrTestis15characters)
26.
LTrim()
FUNCTION:Returnsastringwithoutleadingspaces.
SYNTAX:LTrim(string)
ARGUMENTS:stringisanyvalidstringexpression.
EXAMPLE:<%
strTest="Thisisatest!"
response.writeLTrim(strTest)
%>
RESULT:Thisisatest!
-------------------------------------
27.Mid()
FUNCTION:Returnsaspecifiednumberofcharactersfromastring.
SYNTAX:Mid(string,start[,length])
ARGUMENTS:stringisanyvalidstringexpression;startisanumericcharacterpositiontobegin
extractionfrom;length(optional)isthenumberofcharacterstoreturn.
EXAMPLE:<%
strTest="Thisisatest!TodayisMonday."
response.writeMid(strTest,17,5)
%>
RESULT:Today
-------------------------------------
28.Minute()
FUNCTION:Returnsthenumberoftheminutesincurrentsystemtime.
SYNTAX:Minute(time)
ARGUMENTS:timeisanyvalidtimeexpression.
EXAMPLE:<%=Minute(#12:45:32PM#)%>
RESULT:45
-------------------------------------
29.Month()
FUNCTION:Returnsthenumberofthemonthoftheyear.
SYNTAX:Month(date)
ARGUMENTS:dateisanyvaliddateexpression.
EXAMPLE:<%=Month(#08/04/99#)%>
RESULT:8
-------------------------------------
30.MonthName()
FUNCTION:Returnsastringidentifyingthespecifiedmonth.
SYNTAX:MonthName(month,[,Abb])
ARGUMENTS:monthisthenumericrepresentationforagivenmonth;Abb(optional)isabooleanvalueused
todisplaymonthabbreviation.TruewilldisplaytheabbreviatedmonthnameandFalse(default)willnot
showtheabbreviation.
EXAMPLE:<%=MonthName(Month(#08/04/99#))%>
RESULT:August
-------------------------------------
31.Now()
FUNCTION:Returnsthecurrentsystemdateandtime.
SYNTAX:Now()
ARGUMENTS:None
EXAMPLE:<%=Now%>
RESULT:8/4/999:30:16AM
-------------------------------------
32.Replace()
FUNCTION:Returnsastringinwhichaspecifiedsub-stringhasbeenreplacedwithanothersubstringa
specifiednumberoftimes.
SYNTAX:Replace(strToBeSearched,st</p>强大的可扩展性。ASP具有强大的扩展性,可以实现与多种网络、硬件设备的连接:通过专用的通讯线路远程接入企业;通过远程拨号服务器为远程拨号客户提供服务;通过WAP为移动电话互联网客户服务。 不能只是将它停留在纸上谈兵的程度上。 ASP(ActiveServerPages)是Microsfot公司1996年11月推出的WEB应用程序开发技术,它既不是一种程序语言,也不是一种开发工具,而是一种技术框架,不须使用微软的产品就能编写它的代码,能产生和执行动态、交互式、高效率的站占服务器的应用程序。 ASP.Net摆脱了以前ASP使用脚本语言来编程的缺点,理论上可以使用任何编程语言包括C++,VB,JS等等,当然,最合适的编程语言还是MS为.NetFrmaework专门推出的C(读csharp),它可以看作是VC和Java的混合体吧。 在平时的学习过程中要注意现学现用,注重运用,在掌握了一定的基础知识后,我们可以尝试做一些网页,也许在开始的时候我们可能会遇到很多问题,比如说如何很好的构建基本框架。 我可以结合自己的经验大致给你说一说,希望对你有所帮助,少走些弯路。 ASP的语言不仅仅只是命令格式差不多,而是包含在<%%>之内的命令完全就是VB语法。虽然ASP也是做为单独的一个技术来提出的,但他就是完全继承了VB所有的功能。 学习是为了用的,是为了让你的程序产生价值,把握住这个原则会比较轻松点。除此之外,课外时间一定要多参加一些社会实践活动,来锻炼自己的能力。 虽然ASP也有很多网络教程。但是这些都不系统。都是半路出家,只是从一个例子告诉你怎么用。不会深入讨论,更不会将没有出现在例子里的方法都一一列举出来。 完全不知道到底自己学的是什么。最后,除了教程里面说的几个例子,还是什么都不会。 运用ASP可将VBscript、javascript等脚本语言嵌入到HTML中,便可快速完成网站的应用程序,无需编译,可在服务器端直接执行。容易编写,使用普通的文本编辑器编写,如记事本就可以完成。由脚本在服务器上而不是客户端运行,ASP所使用的脚本语言都在服务端上运行。
页:
[1]