I created a picture slideshow that calls an .asp page
If I have just the XML code it works fine
but if I add any asp tags it doesn't work
Does any one know why?
And how would I generate an XML page before the flash player loads the XML page up into memory?
If I have just the XML code it works fine
Code:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<images>
<pic>
<image>images/First.jpg</image>
<caption>First Image</caption>
</pic>
</images>
Code:
<%
'Just a commented out line
%>
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<images>
<pic>
<image>images/First.jpg</image>
<caption>First Image</caption>
</pic>
</images>
And how would I generate an XML page before the flash player loads the XML page up into memory?