asp.net Repeater绑定时使用函数
网络编程 发布日期:2026/1/18 浏览次数:1
正在浏览:asp.net Repeater绑定时使用函数
在后台cs文件中有个函数:
复制代码 代码如下:
public string getStyle(object style)
{
if ((int)style == 1)
{
return "文字";
}
return "图片";
}
在前台的Repeater中要这样调用,
复制代码 代码如下:
<%#this.getStyle(Eval("link_style"))%>