what is the easiest way to remove the "T" from the result?
I want the result to be "YYYY/MM/DD HH/MM/SS"
the vb.net code is really straight forward
xmlDoc = New Xml.XmlDataDocument(data_set)
xslTran = New Xml.Xsl.XslCompiledTransform
xslTran.Load(strXslFile)
writer = New Xml.XmlTextWriter(strHtmlFile, System.Text.Encoding.UTF8)
xslTran.Transform(xmlDoc, Nothing, writer)
writer.Close()
thanks!