The ASP engine does not parse xml files, only .asp files
You will need to create .asp page that generates a .xml file using FSO
--
_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________
|I had a go at creating an ASP page coded in xml as below.
|
| It worked briefly, and then I changed something minor but cant see what it
| was.
|
| Any pointers would be appreciated
|
| Thanks
| M
|
| <?xml version="1.0"?>
| <rss version="2.0">
| <channel>
| <title>Channel Name</title>
| <description>What this feed is about</description>
| <link>
http://www.site.org.uk/</link>
|
| 'Start db content
| <item>
| <title><%=FP_FieldVal(fp_rs,"RECtitle")%></title>
| <description><%=FP_FieldVal(fp_rs,"RECdesc")%></description>
| <link><%=FP_FieldVal(fp_rs,"RECweb")%></link>
| </item>
| 'end db content
|
| </channel>
| </rss>
|
|
| --
| ---
| | >I am wondering if db content in an FP site can be used to create an RSS
| >feed in an FP2003 site.
| >
| > If so, how, any pointers? Especially getting the db content into an xml
| > "page"
| >
| > Thanks
| > M
| >
| > --
| > ---
| >
| >
|
|