XML question

When I try to run this code:

<xml version="10" ?>
<images directory=“Images”>
<i
mageNode jpegURL=“a2.jpg” thumbURL=“tn_2.jpg” title=“Image 0”>
Comments on Image 0
<imageNode jpegURL=“a3.jpg” thumbURL=“tn_3.jpg” title=“Image 1”>
Comments on Image 1
<
/imageNode>


… <imageNode jpegURL=“a4.jpg” thumbURL=“tn_4.jpg” title=“Image n”>
… Comments on Image n
… <
/imageNode>
… <**/images>

I get this error message:

The XML page cannot be displayed
Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.


Invalid at the top level of the document. Error processing resource ‘file:///C:/Documents and Settings/Administrator.AIRBORNE/Desktop/GalleryComponent1_2/gallery/TMP10mxciz2nx.xml’. Line 1, Position 24

<?xml version=“1.0” ?>

Any idea what the I should put there instead?

I know nothing about xml but does it have anything to do with it being a local file on your hard drive?

Sorry man, best I can think of

Nope :(, thanks though

try


<?xml version="1.0" ?>
instead of
<?xml version="10" ?>

(version 10 not out yet :wink: )
…just a thought…

fixed: thor.

btw, it’s

<? xml version="1.0" ?>

(notice the two question marks) :wink:

im confused