I have a DataboundField in a grid. I'm trying to display a date in Euro format and the time. The time should be wrapped in a span with a css class applied to it.

I am using this, DataFormatString="{0:dd/MM/yyyy <\span cla\s\s='tinyDate'>hh:mm:ss</\span>}"

It's actually pretty close, except the span tag is literally rendering in the browser.

In the cell the text looks like this

19/10/2010 <span class=tinyDate>09:35:00</span>

I don't intend to see the span tag, only it's formatted content. How can I remedy this and make it render correctly?

Thanks for any tips or links.

Cheers,
~ck in San Diego

link|improve this question

67% accept rate
feedback

1 Answer

up vote 4 down vote accepted

Try setting the HtmlEncode property of the field to "false". It's enabled by default to prevent any malicious client-script code from being executed.

link|improve this answer
Perfect! Thanks Tim. That worked. This is a read only grid, so it should be ok. Terrific! – Hcabnettek Oct 19 '10 at 18:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.