Ask a Question related to ASP.NET General, Design and Development.
-
Rick Walsh #1
dates with db->xml->xsl->html
I am using the following code to export a dataset via xml and xsl to html:
-------------------------------------------------------------
..
..
..
Dim dataDoc as new XmlDataDocument(myDataSet)
Dim obj_transform As new XslTransform()
Dim obj_XsltArgs as new XsltArgumentList()
obj_transform.Load("c:/xsl.xsl")
obj_transform.Transform(dataDoc,obj_XsltArgs,obj_S tringWriter,nothing)
str_output = obj_stringBuilder.ToString()
-------------------------------------------------------
This produces html fine. However dates are in the format:
2003-10-12T00:00:00.0000000+01:00
I want to format this as 2003-10-12
How do I do this?
Rick Walsh Guest
-
Between Dates
I am trying to query an online access database and return records that have occurred between dates. I am using another query which does work to... -
Dates & SQL
In my CF form I have created a date object using #DateFormat(Now(),"MM/DD/YY")# which displays the date as: 07/29/05. When the date is inserted... -
ASP/VBS Dates Between Dates
I'm trying to filter records depending on 2 dates requested from the querystring MMColParam1 (startdate) and MMColParam2 (enddate), i.e. a list... -
Dates
Thanks to all those who replied. I ended up doing some research myself and found a good date module at... -
Help with Dates please
Hi, In a SQL table I have a field named departure and a date in inserted in it. What is the exact syntax to get only records with a future date...



Reply With Quote

