[Visual-XSLT-discuss] FW: What is the diff. in using XSLT PlugIn
by Watts, Andrew C other posts by this author
Jun 5 2002 5:02PM messages near this date
view in the new Beta List Site
Re: [Visual-XSLT-discuss] FW: What is the diff. in using XSLT PlugIn
|
[Visual-XSLT-discuss] addObject functionality
OK, an infrequent user question - The XML/XSL will process without throwing
an IE Error - that is I get some
display but need to work on my stylesheet to get the other items. But this
is what happens as I start under XSLT plugin
Exception Starting XSLTransform :System.Xml.XmlException: This is an
unexpected XML declaration. Line 2, position 3.
WHY ?? I started in XML Spy to lay out my XML and XSL then wanted to debug
why my captions did
not display, but I don't get that far in Vstudio. Why ??? Thanks
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="XSLTwebpixs.xslt"?>
<webpixs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="D:\User\webpixs\webpixs.xsd">
<image fid="" path="" name="DCP00172s.jpg" alt="">
......
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<xsl:template match="/">
<html> .....
|