您现在的位置:计算机技术学习网 > 技术中心 > WEB编程 > ASP >

如何用Asp动态生成xml文件

来源:网络 责任编辑:栏目编辑 发表时间:2013-07-02 01:28 点击:

Function ReplaceChar ( FstrSource )
  dim strRet
  if IsNull(FstrSource) then
    FstrSource = ""
  end if
  strRet = Replace ( FstrSource , "&" , "&" )
  strRet = Replace ( strRet , "<" , "&lt;" )
  strRet = Replace ( strRet , ">" , "&gt;" )
  strRet = Replace ( strRet , """" , "&quot;" )
  strRet = Replace ( strRet , "" , "&apos;" )
  ReplaceChar = strRet
End Function
function RstToxml(标准化越来越近了) (FrstRst, FstrRstName)
    dim strSpace  space string behand of element
    dim intLevel  level of the element
    dim strxml(标准化越来越近了)    the return string(xml(标准化越来越近了) string)
    dim intRstField
    dim strShortDate
   
    document level
    intLevel = 0
    strSpace = space (intLevel * 2)
    if Len(FstrRstName)>0 then
    strxml(标准化越来越近了)=strSpace & "<" & FstrRstName & ">" & vbCR
    intLevel = intLevel + 1
    strSpace = space(intLevel*2)
  end if
  if FrstRst.EOF then
    strxml(标准化越来越近了) = strxml(标准化越来越近了)&strSpace & "<Record"
    for nCount=0 to FrstRst.Fields.Count-1
      strxml(标准化越来越近了) = strxml(标准化越来越近了) & space(1)&FrstRst.Fields(nCount).Name&"="
    next
    strxml(标准化越来越近了) = strxml(标准化越来越近了) & "/>" &vbCR
    if Len(FstrRstName)>0 then
    strxml(标准化越来越近了)=strxml(标准化越来越近了)&strSpace & "</" & FstrRstName & ">" & vbCR
    end if
    RstToxml(标准化越来越近了)=strxml(标准化越来越近了)
    exit function
  end if

  now move in one level
  intLevel = intLevel + 1
  strSpace = space (intLevel * 2)
 
  loop through the records
  dim strTemp
  FrstRst.MoveFirst
  do while not FrstRst.EOF
    strTemp = ""
      loop through the fields
      strxml(标准化越来越近了) = strxml(标准化越来越近了) & strSpace & "<Record"
      for each objField in FrstRst.Fields
      set objField = FrstRst.Fields(intRstField)
          strTemp = strTemp & space (1) & objField.Name & "="
             strTemp = strTemp & """" & ReplaceChar(objField.Value)  & """"
      end if
      next
      strxml(标准化越来越近了) = strxml(标准化越来越近了) & "<Record "&strTemp& "/>" & vbCR
      FrstRst.MoveNext
  loop
 
  intLevel=intLevel-1
  strSpace=space(intLevel * 2)

  if Len(FstrRstName)>0 then
    strxml(标准化越来越近了) = strxml(标准化越来越近了) & strSpace & "</" & FstrRstName & "&g

    相关新闻>>

      发表评论
      请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
      用户名: 验证码:点击我更换图片
      最新评论 更多>>

      推荐热点

      • WAP常见问题问答大全(四)
      • ASP开发必备:WEB打印代码大全
      • ASP调用系统ping命令
      • asp缓存技术
      • ASP教程:第三篇 ASP基础
      • 用ASP+XML打造留言本(4)
      • 关于ASP Recordset 分页出现负数解决方法及建议
      • 用asp怎样编写文档搜索页面(5)
      • ASP处理多关键词查询实例代码
      网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
      Copyright © 2008-2015 计算机技术学习交流网. 版权所有

      豫ICP备11007008号-1