仓酷云

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 645|回复: 8
打印 上一主题 下一主题

[学习教程] ASP网页设计ASP.NET中处置datetime的一些通用函数

[复制链接]
再见西城 该用户已被删除
跳转到指定楼层
楼主
发表于 2015-1-16 22:33:40 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
由于ASP还是一种Script语言所没除了大量使用组件外,没有办法提高其工作效率。它必须面对即时编绎的时间考验,同时我们还不知其背后的组件会是一个什么样的状况;UsestheTimespanmethodtosubtractacertainnumberofdays
FunctionDate1()
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版会好点吧
若天明 该用户已被删除
沙发
发表于 2015-1-18 09:10:34 来自手机 | 只看该作者
ASP.Net和ASP的最大区别在于编程思维的转换,而不仅仅在于功能的增强。ASP使用VBS/JS这样的脚本语言混合html来编程,而那些脚本语言属于弱类型、面向结构的编程语言,而非面向对象,这就明显产生以下几个问题:
分手快乐 该用户已被删除
板凳
发表于 2015-1-21 15:30:14 | 只看该作者
虽然ASP也有很多网络教程。但是这些都不系统。都是半路出家,只是从一个例子告诉你怎么用。不会深入讨论,更不会将没有出现在例子里的方法都一一列举出来。
柔情似水 该用户已被删除
地板
发表于 2015-1-30 20:27:45 | 只看该作者
虽然ASP也有很多网络教程。但是这些都不系统。都是半路出家,只是从一个例子告诉你怎么用。不会深入讨论,更不会将没有出现在例子里的方法都一一列举出来。
兰色精灵 该用户已被删除
5#
发表于 2015-2-6 15:51:58 | 只看该作者
如何学好ASP,以前也有人问过,把回答给你转过来看看能否对你有帮助:
小魔女 该用户已被删除
6#
发表于 2015-2-16 23:22:19 | 只看该作者
虽然ASP也有很多网络教程。但是这些都不系统。都是半路出家,只是从一个例子告诉你怎么用。不会深入讨论,更不会将没有出现在例子里的方法都一一列举出来。
再见西城 该用户已被删除
7#
 楼主| 发表于 2015-3-5 12:23:42 | 只看该作者
用户端的浏览器不需要提供任何别的支持,这样大提高了用户与服务器之间的交互的速度。
莫相离 该用户已被删除
8#
发表于 2015-3-12 06:57:54 | 只看该作者
接下来就不能纸上谈兵了,最好的方法其实是实践。实践,只能算是让你掌握语言特性用的。而提倡做实际的Project也不是太好,因为你还没有熟练的能力去综合各种技术,这样只能使你自己越来越迷糊。
海妖 该用户已被删除
9#
发表于 2015-3-19 18:33:27 | 只看该作者
兴趣爱好,那么你无须学编程,申请一个域名和空间,在网上下载一些免费开源的CMS系统,你不用改代码,只须熟悉它们的后台操作,像office一样简单方便,很快就能建一个站点,很多站长都是这样做的
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|仓酷云 鄂ICP备14007578号-2

GMT+8, 2024-12-23 01:32

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表