Re: display empty datetime as blank?
- From: "q" <agapeton@xxxxxxxxx>
- Date: 27 Mar 2006 17:29:34 -0800
You have many options... if you are binding you can override what is
being bound.
You can also make a new property like
public string FormattedDate {
get { return (this.Date == null) ? "" : this.Date; }
}
or whatever.
You could also do this in your own business object (for use with the
object data source) or you could do the processing in SQL.
David Betz
WinFX Harmonics Blog
http://www.davidbetz.net/winfx/
.
- Prev by Date: Re: QueryString and Client-side error
- Next by Date: Re: 2.0 Themes = Big Fat Humongous Pages
- Previous by thread: Simple task make difficult with a repeater
- Next by thread: Setting focus to a text box on page load
- Index(es):