asp+xml问题,在线等待。
<Sql id= "Select * From db Where title like '\ "&ClassId& "\ ' "> 提取某个分类的商品信息 </Sql>
在这个节点中id得值包含了双引号,程序执行肯定要出错,该如何解决?
如果我想用asp取得“提取某个分类的商品信息”这几个汉字该如何操作?
------解决方案-------------------- <?xml version= "1.0 " encoding= "UTF-8 "?>
<root>
<Sql id= "Select top 8 商品编号,商品名称,商品单价,会员折率 From [商品订购库] Order by [记录ID] Desc "> 其他客户还买过 </Sql>
<Sql id= "Select 商品名称,商品编号,商品规格,包装数,商品单位,货号,网上价 from 商品资料库 userInfo where 停销 is null order by 记录ID desc "> 所有可销售的商品信息 </Sql>
<Sql id= "Select 商品类别,记录ID From 商品类别库 Where 上级类别ID=0 Order by 记录ID Desc "> 商品服务分类的分类列表 </Sql>
<Sql id= "Select 商品名称,商品编号,商品规格,包装数,商品单位,货号,网上价 from 商品资料库 userInfo where 新品 is not null order by 记录ID desc "> 提取我的助手中的商品信息 </Sql>
<Sql id= "Select 商品类别,记录ID From 商品类别库 Where 上级类别ID=0 Order by 记录ID Desc "> 商品搜索中的分类列表 </Sql>
<Sql id= "Select 商品类别,记录ID From 商品类别库 Where 商品类别 like '"&ClassId&" ' Order by 记录ID Desc "> 提取某个分类的商品信息 </Sql>
</root>