关于anthem自动产生代码的疑问
最近用到anthem,以下是官方给出的演示页http://anthem.talloaksoftware.com/DropDownLists.aspx
查看页面源文件并无多余的JS代码。
将项目下载后在本地运行,查看源代码会多出一堆JS代码,以下是部分代码:
</script><script type="text/javascript">
//<![CDATA[
// Anthem.js
// Updated Mar 30, 2007
// Anthem.Manager.GetScripts: false
function Anthem_Encode(s){
if (typeof encodeURIComponent == "function") {
// Use JavaScript built-in function
// IE 5.5+ and Netscape 6+ and Mozilla
return encodeURIComponent(s);
} else {
// Need to mimic the JavaScript version
// Netscape 4 and IE 4 and IE 5.0
return encodeURIComponentNew(s);
}
}
//省略
anthem项目代码下载地址:http://sourceforge.net/projects/anthem-dot-net
请教如何去掉多余的JS代码。
--------------------编程问答-------------------- 晕...去掉做什么哦? --------------------编程问答-------------------- 冗余代码当然要去掉了 有哪位知道方法说下 多谢了~ --------------------编程问答-------------------- 经过兄弟我两天的努力终于解决了,你把anthem的源码发布一个release版本的,把这个版本添加到你项目的引用就可以了,在html中是WebResource.axd临时文件,但我不确定每个用到anthem的页面用相同的axd 文件,我也郁闷了几天,good luck !!!
补充:.NET技术 , ASP.NET