basexml.asp
上传用户:dbstep
上传日期:2022-08-06
资源大小:2803k
文件大小:2k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

ASP/ASPX

  1. <%
  2.  ' FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3.  ' Copyright (C) 2003-2009 Frederico Caldeira Knabben
  4.  '
  5.  ' == BEGIN LICENSE ==
  6.  '
  7.  ' Licensed under the terms of any of the following licenses at your
  8.  ' choice:
  9.  '
  10.  '  - GNU General Public License Version 2 or later (the "GPL")
  11.  '    http://www.gnu.org/licenses/gpl.html
  12.  '
  13.  '  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  14.  '    http://www.gnu.org/licenses/lgpl.html
  15.  '
  16.  '  - Mozilla Public License Version 1.1 or later (the "MPL")
  17.  '    http://www.mozilla.org/MPL/MPL-1.1.html
  18.  '
  19.  ' == END LICENSE ==
  20.  '
  21.  ' This file include the functions that create the base XML output.
  22. %>
  23. <%
  24. Sub SetXmlHeaders()
  25. ' Cleans the response buffer.
  26. Response.Clear()
  27. ' Prevent the browser from caching the result.
  28. Response.CacheControl = "no-cache"
  29. ' Set the response format.
  30. Response.CodePage  = 65001
  31. Response.CharSet = "UTF-8"
  32. Response.ContentType = "text/xml"
  33. End Sub
  34. Sub CreateXmlHeader( command, resourceType, currentFolder, url )
  35. ' Create the XML document header.
  36. Response.Write "<?xml version=""1.0"" encoding=""utf-8"" ?>"
  37. ' Create the main "Connector" node.
  38. Response.Write "<Connector command=""" & command & """ resourceType=""" & resourceType & """>"
  39. ' Add the current folder node.
  40. Response.Write "<CurrentFolder path=""" & ConvertToXmlAttribute( currentFolder ) & """ url=""" & ConvertToXmlAttribute( url ) & """ />"
  41. End Sub
  42. Sub CreateXmlFooter()
  43. Response.Write "</Connector>"
  44. End Sub
  45. Sub SendError( number, text )
  46. SetXmlHeaders
  47. ' Create the XML document header.
  48. Response.Write "<?xml version=""1.0"" encoding=""utf-8"" ?>"
  49. Response.Write "<Connector><Error number=""" & number & """ text=""" & Server.HTMLEncode( text ) & """ /></Connector>"
  50. Response.End
  51. End Sub
  52. %>