sharepoint design中把图片库web部件转换为XSLT数据视图时出错!解决方法

sharepoint design中把图片库web部件转换为XSLT数据视图时出错!
sharepoint design 中把图片库web部件转换为XSLT数据视图时出错!
用sharepoint2007开发的网站,网页中用的模板是默认的,web部件是在网页中拖进去的,在sharepoint design 中编辑的

提示错误如下:

此web部件没有有效的Xslt样式表:
错误:名称中的起始字符无效! X(注:找不到图片时显示的图标)/_layouts/images/

有知道怎么回事的请留言,先谢谢了!

------解决方案--------------------
你要实现什么功能,可能不需要你这样做就能实现

而且截个图来。
------解决方案--------------------
关注
------解决方案--------------------
没有遇见过这样的问题,肯定是你哪里误操作了。
------解决方案--------------------
探讨
谢谢大家关注
我要实现的功能就是把图片列表打散,调成想要的效果

我在其他机器上也试了,也是出这样的错误,而且只要图片列表里面带缩略图就会转换出错
很是郁闷,好像以前用sharepoint2003没有错误
你们可以试试
在sharepoint design 2007打开一个站点网页
把带缩略图的图片列表转换成XSLT数据视图
看看会不会出错

------解决方案--------------------
ID类型值MS用数字开头就报错,改成字母开头就行

试试
------解决方案--------------------
两处大错误:
1. a 标志没有关闭,otherwise中间夹了一个</xsl:choose>的结束标签:
XML code

                                            <xsl:otherwise>
                                                <xsl:choose>
                                                    <xsl:when test="@ImageWidth='0'"></xsl:when>
                                                    <xsl:otherwise><a href="{$URL_Display}?ID={@ID}"><img border="0" ALT="{$IDAV30AC}" SRC="&lt;xsl:choose&gt;&lt;xsl:when test=" @ImageWidth="" />/_layouts/images/<xsl:value-of select="ddwrt:MapToIcon(string(@HTML_x0020_File_x0020_Type),string(@File_x0020_Type))" /></a></xsl:otherwise>
                                                </xsl:choose>
                                            </xsl:otherwise>

------解决方案--------------------
XML code
<img name="test">
    <xsl:attribute name="src">
        <xsl:choose>
            <xsl:when test=""></xsl:when>
        </xsl:choose>
    </xsl:attribute>
</img>