Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

GredView {0:d} formatting doesn't work

1 view
Skip to first unread message

Shimon Sim

unread,
Nov 23, 2005, 10:51:45 PM11/23/05
to
I just don't understand what is wrong.
I have simple query. One of the returning fields is data

I created bound column for GridView (ASP.NET 2.0) and specified
DataFormatString
as {0:d} - it returns me the row date with hours.
I tried something like this {0 :dd/MM/yyyy} the same results.
It looks like that system doesn't recognize that the field is date. Why not?
What can be done?
Thank you,
Shimon


Steven Cheng[MSFT]

unread,
Nov 24, 2005, 1:15:11 AM11/24/05
to
Hi Shimon,

As for the GridView DataField's DataFormatString not working problem, I
think it is because the new "HtmlEncode" setting provided for the
DataField. This property is set to "true" by default, thus the bound data
on that column will be htmlencoded before render out to response stream...
And set Htmlencode to true will prevent the DataFormatString from
working. So I think you can try disabling the "HtmlEncode" on that
DataField so as to make DataFormatString take effect, e.g:

<asp:BoundField DataField="OrderDate" HeaderText="OrderDate"
SortExpression="OrderDate" DataFormatString="{0:yy/mm/dd}"
HtmlEncode="false"/>

Hope helps. Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

--------------------
| From: "Shimon Sim" <shimon...@community.nospam>
| Subject: GredView {0:d} formatting doesn't work
| Date: Wed, 23 Nov 2005 22:51:45 -0500
| Lines: 13
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
| Message-ID: <eIyllpK8...@TK2MSFTNGP10.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: ool-44c05922.dyn.optonline.net 68.192.89.34
| Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP10.phx.gbl
| Xref: TK2MSFTNGXA02.phx.gbl
microsoft.public.dotnet.framework.aspnet:360619
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

Edwin Knoppert

unread,
Nov 24, 2005, 5:00:43 AM11/24/05
to
Super!
Had the same trouble :)


"Steven Cheng[MSFT]" <stc...@online.microsoft.com> schreef in bericht
news:XOSay5L8...@TK2MSFTNGXA02.phx.gbl...

Andrew Robinson

unread,
Nov 24, 2005, 12:56:35 AM11/24/05
to
note sure if this is by design of if it is a bug, but turn of HTML Encoding.
Your data will format.


--

Andrew Robinson
www.binaryocean.com
www.bellinghamdotnet.org


"Shimon Sim" <shimon...@community.nospam> wrote in message
news:eIyllpK8...@TK2MSFTNGP10.phx.gbl...

Shimon Sim

unread,
Nov 24, 2005, 9:15:51 AM11/24/05
to
Thank you,
that worked.
Shimon.


"Steven Cheng[MSFT]" <stc...@online.microsoft.com> wrote in message
news:XOSay5L8...@TK2MSFTNGXA02.phx.gbl...

Steven Cheng[MSFT]

unread,
Nov 24, 2005, 7:48:45 PM11/24/05
to
You're welcome Shimon,

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

--------------------
| From: "Shimon Sim" <shimon...@community.nospam>

| References: <eIyllpK8...@TK2MSFTNGP10.phx.gbl>
<XOSay5L8...@TK2MSFTNGXA02.phx.gbl>
| Subject: Re: GredView {0:d} formatting doesn't work
| Date: Thu, 24 Nov 2005 09:15:51 -0500
| Lines: 68


| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670

| Message-ID: <eCySVGQ8...@TK2MSFTNGP14.phx.gbl>


| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: ool-44c05922.dyn.optonline.net 68.192.89.34

| Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP14.phx.gbl
| Xref: TK2MSFTNGXA02.phx.gbl
microsoft.public.dotnet.framework.aspnet:360726
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

0 new messages