Richie

Sometimes at night when I look up at the stars, and see the whole sky just laid out there, don't you think I ain't remembering it all. I still got dreams like anybody else, and ever so often, I am thinking about how things might of been. And then, all of a sudden, I'm forty, fifty, sixty years old, you know?

StringTemplate操作技巧

1. 多值属性的呈现
例如一个Image类有属性ImageUrl、TargetUrl,取出一个Image对象集合IList<Image> images,使用st.SetAttribute("images", images); 将这个集合设置给StringTemplate对象,想生成一段文本:
pics=ImageUrl1|ImageUrl2|...&targets=TargetUrl1|TargetUrl2|...&width=580
StringTemplate写法为:
pics=$images:{$attr.ImageUrl$};separator="|"$&targets=$images:{$attr.TargetUrl$};separator="|"$&width=580

posted on 2007-09-14 20:56  riccc  阅读(993)  评论(0编辑  收藏  举报

导航