无法显示 XML 页
无法显示 XML 页。
使用 样式表无法查看 XML 输入。请更正错误然后单击 刷新按钮,或以后重试。
--------------------------------------------------------------------------------
系统不支持指定的编码方式。处理资源 'http://localhost/qp/docmag/z.asp' 时出错。第 1 行,位置: 40
<?xml version="1.0" encoding="GB2312"?>
我的z.asp文件是这样书写的:
<%
Set fso = CreateObject("Scripting.FileSystemObject")
set f=fso.opentextfile("d:\xml\222.xml",1)
response.Write f.ReadLine
%>
而222.xml是这样的:
<?xml version="1.0" encoding="GB2312"?>
<rowlist>
</rowlist>
问题点数:10、回复次数:1Top
1 楼slayerbb(名字被抢了)回复于 2006-03-04 13:41:45 得分 0
ie version?
我这边运行正常
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%
Set fso = CreateObject("Scripting.FileSystemObject")
set f=fso.opentextfile(server.mappath("222.xml"),1)
response.Write f.ReadLine
%>
222.xml 同目录
<?xml version="1.0" encoding="GB2312"?>
<rowlist>
</rowlist>Top




