📄 viewguestbook.asp
字号:
<%
'
' ViewGuestBook.ASP
'
' Chris Eastwood, 2000
'
' http://www.vbcodelibrary.com
'
'
Dim oSource ' our XML document
Dim oStyle ' our XSL document
'
' Create the XML DOM Object for the XML file
'
Set oSource = Server.CreateObject("Microsoft.XMLDOM")
oSource.async = False
'
' Load in the XML file to the DOM object
'
oSource.Load Server.MapPath("gbook.xml")
'
' Create the XML DOM Object for the XSL Stylesheet
'
Set oStyle = Server.CreateObject("Microsoft.XMLDOM")
oStyle.async = False
'
' Load the XSL file into the Style DOM object
'
oStyle.load Server.MapPath("gbook.xsl")
'
' Write the transformed document out to the browser
'
Response.Write oSource.TransformNode(oStyle)
'
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -