
XSL
文章平均质量分 62
pclook
这个作者很懒,什么都没留下…
展开
-
在XSL中取得当前时间
<br />在xsl 中怎么显示当前时间,可以使用微软的xsl 命名空间定义(一种是URL 命名空间命名法:xmlns:msxsl="http://www.w3.org/TR/WD-xsl" ,一种是URN 命名空间命名法:xmlns:msxsl="urn:schemas-microsoft-com:xslt"),具体代码如下,分别建立hello.xsl 文件和hello.xml 文件于同一目录下,用IE 打开hello.xml 即可看到运行结果。<br />注意:下面的hello.xsl原创 2010-10-19 21:56:00 · 1911 阅读 · 1 评论 -
VB.net生成xml
<br /> Dim XmlWrite As System.Xml.XmlTextWriter = New System.Xml.XmlTextWriter("d:/book.xml", System.Text.Encoding.UTF8) XmlWrite.WriteStartDocument() '开始一个文档,写下图第一行 XmlWrite.WriteStartElement("bookstore")'开始一个元素,根元素 XmlWr原创 2011-02-05 21:58:00 · 2328 阅读 · 0 评论