|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
asp可以轻松地实现对页面内容的动态控制,根据不同的浏览者,显示不同的页面内容。而浏览者一点觉察不出来,就像为他专门制作的页面一样。使用各种各样的组件,asp可以完成无比强大的功能。DatemanipulationwithVBScript
Beyondsimplydisplayingthedate,VBScriptprovidesanumberoffunctions
thatallowyoutomanipulatedates.TheDateAdd(interval,number,date)
andDateDiff(interval,date1,date2)arehelpfulfunctionsthatare
usuallyleftforthedevelopertowrite.
Bothfunctionsrequireyoutopassanintervalargument.Thisargument
specifiesthetimeintervaltoaddtothedateortocomparethedates.
TheDateAdd(interval,number,date)functionreturnsadatethatisthe
specifiednumberofintervalsfromthegivendate.TheDateDiff(interval,
date1,date2)functionreturnsthenumberofintervalsbetweendate1and
date2.
ThereisalsoahandyfunctioncalledDateSerial(year,month,day)that
returnsavariantoftheDatesubtype.Thisfunctionisveryusefulwhen
youneedtocreateadate(suchasChristmas)foruseintheDateDiff()
function.
Thefollowingcodeshowsthesethreefunctionsinaction:
<%dToday=Date()%>
In10daysitwillbe
<%=DateAdd("d",10,dToday)%>
<P>
<%dChristmas=DateSerial(1998,12,25)%>
Christmasisjust<%=DateDiff("d",dToday,dChristmas)%>daysaway!
From--ZDJournalsActiveServerDevelopersJournal</p>使用cdonts,可以发送、查看邮件,实现webmail的功能。结合wsh,可以实现对nt主机的管理,如nt用户管理、iis虚拟主机设置、exchange邮箱设置等等,就像管理本地机一样方便。 |
|