The XML page cannot be displayed
Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
--------------------------------------------------------------------------------
End tag 'note_body' does not match the start tag 'PF8'. Error processing resource '
Line 107, Position 46
USE <PF7> AND <PF8> TO NAVIGATE REPORT LIST</note_body><note_dt>8/28/99 11:30:11 AM</note_dt><note_user>DREYNOLDS</note_user><note_body>FMID(s) SWJR371, SWJR381, SWJR382, SWJR410 are not being addressed by this Change because:
---------------------------------------------^
above is the error message that i get when i run my asp page. the <PF7> and others are data in the database.
below is my code. the Xml processor interpretes that as a tag.
<% @language="vbscript" %>
<% Response.ContentType="text/xml" %>
<?xml version="1.0"?>
<!-- xml file generated by asp -->
<notes xml:space="preserve">
dim omsg, rst
set omsg= Server.CreateObject("ADODB.Connection"

omsg.ConnectionString="Provider=MSDASQL;DSN=SwisODBC;UID=SYSDBA;PWD=asdf"
omsg.open
set rst= Server.CreateObject("ADODB.Recordset"

set rst=omsg.Execute(" Select * from CHGNOTE;"

do until rst.EOF
Response.Write "<note_dt>" & (replace(rst("NOTE_DT"

, "&", "&"

) & "</note_dt>"
Response.Write "<note_user>" & (replace(rst("NOTE_USER"

, "&", "&"

) & "</note_user>"
Response.Write "<note_body>" & (replace(rst("NOTES"

, "&", "&"

) & "</note_body>"
rst.MoveNext
loop
rst.Close
set rst=nothing
%>
</notes>