ASP.NET 2.0 BasicsIf you are new to ASP or ASP.NET programming with version 2.0, this is the forum to begin asking questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the ASP.NET 2.0 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
The date I am getting from a field in database is â10/15/2007â how can I change into â15 October, 2007â.
I am using vb.net
<td><%#Eval("ArticleDate")%></td>
Many Tthanks
March 17th, 2008, 10:47 PM
jomet
Guest
Posts: n/a
Try this
<%#Eval("ArticleDate").ToString("dd MMMM yyyy")%>
jomet.
---------------------------------------------
Once you start a working on something,
dont be afraid of failure and dont abandon it.
People who work sincerely are the happiest.