Date String
How can display date string value ?
I want to display date like this.
12 May 2004
strdate=Request.Form("strdate")
Response.write(strdate)
I use sql server 2000, how can use the strdate in the following
function so that it return string date in asp page
ie. 12 May 2004
what is the syntax to display string date in asp ?
convert(varchar(2),day(getdate())) + ' ' + DATENAME(month, getdate()) + ' ' + convert(varchar(4),year(getdate()))
regards.
Mateen
|