WEB开发网      濠电姷鏁告繛鈧繛浣冲洤纾瑰┑鐘宠壘閻ょ偓銇勯幇鍫曟闁稿鍠愰妵鍕冀閵娧佲偓鎺楁⒒閸曨偄顏柡宀嬬畱铻e〒姘煎灡绗戦梻浣筋嚙濮橈箓顢氳濠€浣糕攽閻樿宸ュΔ鐘叉啞缁傚秹宕滆绾惧ジ寮堕崼娑樺缂佹宀搁弻鐔风暋閻楀牆娈楅梺璇″枓閺呯姴鐣疯ぐ鎺濇晝闁靛牆妫欓蹇旂節閻㈤潧浠﹂柛銊ョ埣楠炴劙骞橀鑲╋紱闂佽宕樼粔顔裤亹閹烘挸浜归梺缁樺灦閿曗晛螞閸曨垱鈷戦柟鑲╁仜婵″ジ鎮楀☉鎺撴珖缂侇喖顑呴鍏煎緞濡粯娅囬梻浣瑰缁诲倿寮绘繝鍥ㄦ櫇闁稿本绋撻崢鐢告煟鎼淬垻鈯曢柨姘舵煟韫囥儳绋荤紒缁樼箖缁绘繈宕橀妸褌绱濋梻浣筋嚃閸ㄤ即宕弶鎴犳殾闁绘梻鈷堥弫鍌炴煕閳锯偓閺呮瑧妲愬Ο琛℃斀闁绘劕妯婇崵鐔封攽椤旇棄鍔ら摶鐐烘煕閺囥劌澧柛娆忕箻閺屽秹宕崟顒€娅g紓浣插亾濠㈣泛顑囩粻楣冩煙鐎涙ḿ绠橀柨娑樼У椤ㄣ儵鎮欓鍕紙闂佽鍠栫紞濠傜暦閹偊妲诲┑鈩冨絻椤兘寮诲☉銏犖╅柕澶堝労閸斿绱撴担绋库偓鍝ョ矓瑜版帒鏋侀柟鍓х帛閺呮悂鏌ㄩ悤鍌涘 ---闂傚倸鍊烽悞锔锯偓绗涘厾娲煛閸涱厾顔嗛梺璺ㄥ櫐閹凤拷
开发学院WEB开发ASP ASP.NET中处理datetime的一些通用函数 阅读

ASP.NET中处理datetime的一些通用函数

 2001-03-23 10:18:27 来源:WEB开发网 闂傚倸鍊风欢姘缚瑜嶈灋闁圭虎鍠栫粻顖炴煥閻曞倹瀚�闂傚倸鍊风粈渚€骞夐敓鐘插瀭闁汇垹鐏氬畷鏌ユ煙閹殿喖顣奸柛搴$У閵囧嫰骞掗幋婵冨亾閻㈢ǹ纾婚柟鐐灱濡插牊绻涢崱妤冃℃繛宀婁簽缁辨捇宕掑鎵佹瀸闂佺懓鍤栭幏锟�濠电姷鏁告慨顓㈠箯閸愵喖宸濇い鎾寸箘閹规洟姊绘笟鈧ḿ褍煤閵堝悿娲Ω閳轰胶鍔﹀銈嗗笂閼冲爼鍩婇弴銏$厪闁搞儮鏅涙禒褏绱掓潏鈺佷槐闁轰焦鎹囬弫鎾绘晸閿燂拷闂傚倸鍊风欢姘缚瑜嶈灋闁圭虎鍠栫粻顖炴煥閻曞倹瀚�  闂傚倸鍊烽懗鑸电仚缂備胶绮〃鍛村煝瀹ュ鍗抽柕蹇曞У閻庮剟姊虹紒妯哄妞ゆ劗鍘ч埥澶娢熼柨瀣偓濠氭⒑瑜版帒浜伴柛鎾寸☉閳绘柨顫濋懜纰樻嫼闂佸憡绋戦オ鏉戔枔閺冣偓缁绘稓浠﹂崒姘瀳闂佸磭绮幑鍥嵁鐎n亖鏀介柟閭﹀墯椤斿倹淇婇悙顏勨偓鏍ь潖婵犳艾鍌ㄧ憸蹇涘箟閹绢喗鏅搁柨鐕傛嫹
核心提示:'Uses the Timespan method to subtract a certain number of daysFunction Date1() Dim NewTime as DateTime NewTime = DateTime.Now.Subtract( New TimeSpan(7, 0, 0
'Uses the Timespan method to subtract a certain number of days
Function Date1()
   Dim NewTime as DateTime
   NewTime = DateTime.Now.Subtract( New TimeSpan(7, 0, 0, 0) )
   NewTime = NewTime.Format("MM/dd/yyyy", DateTimeFormatInfo)
   response.write(NewTime)
End Function

'Uses the AddDays method to subtract X number of days
Public Function Date2()
 Dim NewTime as DateTime
 NewTime = DateTime.Now.AddDays(-7)
 Dim s as string = NewTime
 return s
End Function

'Thanks to Paul Czywczynski for this idea
'This PRobably (In My opinion) Offers the most flexibility found so far
'Change where the MM/dd/yyyy to whatever
'response.write(System.String.Format("{0:d}",NewTime))
'would return just the name of the Day
Function Date3()
 Dim NewTime as DateTime = now.addDays(-7)
 response.write(System.String.Format("{0:MM/dd/yyyy}",NewTime))
End Function


Function Date4()
Dim NewTime as DateTime
 NewTime = now.addDays(-7)
 return NewTime.ToString()
End Function

'Uses the toLongTimeString method
Public Function Date5()
 Dim NewTime as DateTime
 NewTime = Now()
 return newtime.toLongTimeString()
End Function

'Uses the toShortTimeString method
Public Function Date6()
 Dim NewTime as DateTime
 NewTime = Now()
 return newtime.toShortTimeString()
End Function

'Uses the toLongDateString method
Public Function Date7()
 Dim NewTime as DateTime
 NewTime = Now()
 return newtime.toLongDateString()
End Function

'Uses the toShortDateString method
Public Function Date8()
 Dim NewTime as DateTime
 NewTime = Now()
 return newtime.toShortDatestring()
End Function

'Uses FormatDateTime function General format
Function Date9()
 Dim NewTime as DateTime
 NewTime = DateTime.Now.Subtract( New TimeSpan(7, 0, 0, 0) )
 return formatdatetime(NewTime, 0)
End Function

'Uses FormatDateTime function LongDate format
Function Date10()
 Dim NewTime as DateTime
 NewTime = DateTime.Now.Subtract( New TimeSpan(7, 0, 0, 0) )
 return formatdatetime(NewTime, 1)
End Function

'Uses FormatDateTime function ShortDate format
Function Date11()
 Dim NewTime as DateTime
 NewTime = DateTime.Now.Subtract( New TimeSpan(7, 0, 0, 0) )
 return formatdatetime(NewTime, 2)
End Function

'Uses FormatDateTime function LongTime format
Function Date12()
 Dim NewTime as DateTime
 NewTime = DateTime.Now.Subtract( New TimeSpan(7, 0, 0, 0) )
 return formatdatetime(NewTime, 3)
End Function

'Uses FormatDateTime function ShortTime format
Function Date13()
 Dim NewTime as DateTime
 NewTime = DateTime.Now.Subtract( New TimeSpan(7, 0, 0, 0) )
 return formatdatetime(NewTime, 4)
End Function

'Bring Back just the name of the Day
Function Date14()
 Dim NewTime as DateTime = now.addDays(-7)
 dim s as string
 s = (System.String.Format("{0:dddd}",NewTime))
 Return s
End Function

'Returns the Integer of what day of week
Function Date15()
 Dim MyDate as DateTime
 Dim MyWeekDay as Integer
 MyDate = Now.AddDays(-5)
 MyWeekDay = Weekday(MyDate)  
 return MyWeekDay
End Function

'Returns the Month Integer
Function Date16()
 Dim MyDate as DateTime
 Dim MyMonth as Integer
 MyDate = Now.AddDays(-5)
 MyMonth = Month(MyDate)  
 return MyMonth
End Function

'Returns just a formatted string
'This method provides just formatting but
'Very flexible with not a lot of code
Function Date17()
 Dim MyDate as String
 MyDate = Format(Now(), "yyyy")
 return MyDate
End Function
</script>

Tags:ASP NET 处理

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接