ASP网页设计ASP.NET中处置datetime的一些通用函数
由于ASP还是一种Script语言所没除了大量使用组件外,没有办法提高其工作效率。它必须面对即时编绎的时间考验,同时我们还不知其背后的组件会是一个什么样的状况;UsestheTimespanmethodtosubtractacertainnumberofdaysFunctionDate1()
DimNewTimeasDateTime
NewTime=DateTime.Now.Subtract(NewTimeSpan(7,0,0,0))
NewTime=NewTime.Format("MM/dd/yyyy",DateTimeFormatInfo)
response.write(NewTime)
EndFunction
UsestheAddDaysmethodtosubtractXnumberofdays
PublicFunctionDate2()
DimNewTimeasDateTime
NewTime=DateTime.Now.AddDays(-7)
Dimsasstring=NewTime
returns
EndFunction
ThankstoPaulCzywczynskiforthisidea
Thisprobably(InMyopinion)Offersthemostflexibilityfoundsofar
ChangewheretheMM/dd/yyyytowhatever
response.write(System.String.Format("{0:d}",NewTime))
wouldreturnjustthenameoftheDay
FunctionDate3()
DimNewTimeasDateTime=now.addDays(-7)
response.write(System.String.Format("{0:MM/dd/yyyy}",NewTime))
EndFunction
FunctionDate4()
DimNewTimeasDateTime
NewTime=now.addDays(-7)
returnNewTime.ToString()
EndFunction
UsesthetoLongTimeStringmethod
PublicFunctionDate5()
DimNewTimeasDateTime
NewTime=Now()
returnnewtime.toLongTimeString()
EndFunction
UsesthetoShortTimeStringmethod
PublicFunctionDate6()
DimNewTimeasDateTime
NewTime=Now()
returnnewtime.toShortTimeString()
EndFunction
UsesthetoLongDateStringmethod
PublicFunctionDate7()
DimNewTimeasDateTime
NewTime=Now()
returnnewtime.toLongDateString()
EndFunction
UsesthetoShortDateStringmethod
PublicFunctionDate8()
DimNewTimeasDateTime
NewTime=Now()
returnnewtime.toShortDatestring()
EndFunction
UsesFormatDateTimefunctionGeneralformat
FunctionDate9()
DimNewTimeasDateTime
NewTime=DateTime.Now.Subtract(NewTimeSpan(7,0,0,0))
returnformatdatetime(NewTime,0)
EndFunction
UsesFormatDateTimefunctionLongDateformat
FunctionDate10()
DimNewTimeasDateTime
NewTime=DateTime.Now.Subtract(NewTimeSpan(7,0,0,0))
returnformatdatetime(NewTime,1)
EndFunction
UsesFormatDateTimefunctionShortDateformat
FunctionDate11()
DimNewTimeasDateTime
NewTime=DateTime.Now.Subtract(NewTimeSpan(7,0,0,0))
returnformatdatetime(NewTime,2)
EndFunction
UsesFormatDateTimefunctionLongTimeformat
FunctionDate12()
DimNewTimeasDateTime
NewTime=DateTime.Now.Subtract(NewTimeSpan(7,0,0,0))
returnformatdatetime(NewTime,3)
EndFunction
UsesFormatDateTimefunctionShortTimeformat
FunctionDate13()
DimNewTimeasDateTime
NewTime=DateTime.Now.Subtract(NewTimeSpan(7,0,0,0))
returnformatdatetime(NewTime,4)
EndFunction
BringBackjustthenameoftheDay
FunctionDate14()
DimNewTimeasDateTime=now.addDays(-7)
dimsasstring
s=(System.String.Format("{0:dddd}",NewTime))
Returns
EndFunction
ReturnstheIntegerofwhatdayofweek
FunctionDate15()
DimMyDateasDateTime
DimMyWeekDayasInteger
MyDate=Now.AddDays(-5)
MyWeekDay=Weekday(MyDate)
returnMyWeekDay
EndFunction
ReturnstheMonthInteger
FunctionDate16()
DimMyDateasDateTime
DimMyMonthasInteger
MyDate=Now.AddDays(-5)
MyMonth=Month(MyDate)
returnMyMonth
EndFunction
Returnsjustaformattedstring
Thismethodprovidesjustformattingbut
Veryflexiblewithnotalotofcode
FunctionDate17()
DimMyDateasString
MyDate=Format(Now(),"yyyy")
returnMyDate
EndFunction
</script>
大家可以自己去看一看.可以说看得想呕吐.以前有次下了个动网来看.里面连基本内置函数的保护措施(函数没防御性)都没有.难怪经常补这个补那个了.可能现在.NET版会好点吧 ASP.Net和ASP的最大区别在于编程思维的转换,而不仅仅在于功能的增强。ASP使用VBS/JS这样的脚本语言混合html来编程,而那些脚本语言属于弱类型、面向结构的编程语言,而非面向对象,这就明显产生以下几个问题: 虽然ASP也有很多网络教程。但是这些都不系统。都是半路出家,只是从一个例子告诉你怎么用。不会深入讨论,更不会将没有出现在例子里的方法都一一列举出来。 虽然ASP也有很多网络教程。但是这些都不系统。都是半路出家,只是从一个例子告诉你怎么用。不会深入讨论,更不会将没有出现在例子里的方法都一一列举出来。 如何学好ASP,以前也有人问过,把回答给你转过来看看能否对你有帮助: 虽然ASP也有很多网络教程。但是这些都不系统。都是半路出家,只是从一个例子告诉你怎么用。不会深入讨论,更不会将没有出现在例子里的方法都一一列举出来。 用户端的浏览器不需要提供任何别的支持,这样大提高了用户与服务器之间的交互的速度。 接下来就不能纸上谈兵了,最好的方法其实是实践。实践,只能算是让你掌握语言特性用的。而提倡做实际的Project也不是太好,因为你还没有熟练的能力去综合各种技术,这样只能使你自己越来越迷糊。 兴趣爱好,那么你无须学编程,申请一个域名和空间,在网上下载一些免费开源的CMS系统,你不用改代码,只须熟悉它们的后台操作,像office一样简单方便,很快就能建一个站点,很多站长都是这样做的
页:
[1]