利用NVelocity模板替换技术显示页面,模板里怎么调用C#类库的静态方法
提问:
利用NVelocity替换模板来显示页面内容、
模板页里怎么调用C#类库的静态方法呢、
具体说明:
string str="xxxxx...";
August.Utils.StringHelper.SubString(str,200,"...");
后台是可以直接这么调用的、
但是放到模板里
stringhelper.SubString($item.newscontent,200,"......")
然后后台
nh.Put("stringhelper",new August.Utils.StringHelper());
不行、
回答:
前面要加美元符号 $stringhelper.SubString($item.newscontent,200,"......")
来自:http://www.itstrike.cn/Question/c9ae5650-42ad-4e25-b178-c49a967df1c3