CSS 里的url属性 需要image路径,但是image是webresource里的
------解决方案--------------------------------------------------------
1.在引入 css 的时候需要加上 PerformSubstitution = true,例:
[assembly: WebResource("......", "text/css", PerformSubstitution = true)]
2.css 中引用 image 路径需要这样做:
background: url(<%=WebResource("......")%>) no-repeat;
以上的 ...... 代表命名空间+路径