SQL Server 2005 Reporting Services 报表中随意格式化日期的方法

王朝mssql·作者佚名  2008-05-31
窄屏简体版  字體: |||超大  

在SQL Server 2005 Reporting Services 报表中格式化日期的方法可以 FormatDateTime的函数,下面是它的定义:

Visual Basic (Declaration)

Public Shared Function FormatDateTime ( _

Expression As DateTime, _

<OptionalAttribute> Optional NamedFormat As DateFormat = DateFormat.GeneralDate _

) As String

Visual Basic (Usage)

Dim Expression As DateTime

Dim NamedFormat As DateFormat

Dim returnValue As String

returnValue = Strings.FormatDateTime(Expression, NamedFormat)

下面是NamedFormat 的定义:

Constant

Description

DateFormat.GeneralDate

Display a date and/or time. Display a date part as a short date. If there is a time part, display it as a long time. If present, both parts display.

DateFormat.LongDate

Display a date using the long date format specified in your computer's regional settings.

DateFormat.ShortDate

Display a date using the short date format specified in your computer's regional settings.

DateFormat.LongTime

Display a time using the time format specified in your computer's regional settings.

DateFormat.ShortTime

Display a time using the 24-hour format (hh:mm).

它的类型就这么几种,很有限的,远远不能满足我们的需要。那怎么办?

实际上在报表中可以使用 ToString 的方法,来定义任意格式的字符串格式。比如:

cdate(“2007-12-12 1:3:40”).ToString("yyyy-MM-dd") 可以格式化成 2007-12-12的格式,还可以格式化成12/12/2007这样的格式,甚至可以格式化成 2007+12+12这样的格式。这样只要你的format 格式化字符串正确,就可以实现你想要的日期格式。

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航