📄 mess.asp
字号:
<%Response.Charset="gb2312"%>
<%
dim node,i,nodecount
set xml = CreateObject("Microsoft.XMLDOM")
xml.async = false
xml.load(Server.MapPath("data.xml"))
set root = xml.documentElement
set nodeLis = root.childNodes
nodeCount = nodeLis.length
nums=nodeCount-15
For i=1 to nums
set node = nodeLis.nextNode()
next
For i=i to nodeCount
set node = nodeLis.nextNode()
sty1=""
sty2=""
face=""
select case node.selectSingleNode("mfont").text
case "1"
sty1="<b>"
sty2="</b>"
case "2"
sty1="<i>"
sty2="</i>"
end select
if node.selectSingleNode("elist").text<>"" then
face="<img src=face/"&node.selectSingleNode("elist").text&">"
end if
%>
<font color="#FF0000"><%=node.selectSingleNode("time").text%></font> [<font color="#663300"><%=node.selectSingleNode("user").text%></font>]对[<font color="#663300"><%=node.selectSingleNode("mtowho").text%></font>]说: <%=sty1%><font color="<%=node.selectSingleNode("mfcolor").text%>"><%= node.selectSingleNode("mess").text%></font><%=sty2%> <%=face%><br/>
<%
Next
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -