当前位置:Gxlcms > asp.net > asp.net Repeater绑定时使用函数

asp.net Repeater绑定时使用函数

时间:2021-07-01 10:21:17 帮助过:59人阅读

在后台cs文件中有个函数:
代码如下:
public string getStyle(object style)
{
if ((int)style == 1)
{
return "文字";
}
return "图片";
}

在前台的Repeater中要这样调用,
代码如下:
<%#this.getStyle(Eval("link_style"))%>

人气教程排行