实用技巧

关注公众号 jb51net

关闭
首页 > 网络编程 > ASP.NET > 实用技巧 > Repeater绑定

asp.net Repeater绑定时使用函数

作者:

asp.net repeater绑定函数使用实例
在后台cs文件中有个函数:
复制代码 代码如下:

public string getStyle(object style)
{
if ((int)style == 1)
{
return "文字";
}
return "图片";
}

在前台的Repeater中要这样调用,
复制代码 代码如下:

<%#this.getStyle(Eval("link_style"))%>
您可能感兴趣的文章:
阅读全文