站长资源网络编程

asp.net Repeater绑定时使用函数

整理:jimmy2026/8/4浏览2
简介在后台cs文件中有个函数: 复制代码 代码如下:public string getStyle(object style) { if ((int)style == 1) { return "文字"; } return "图片"; } 在前台的Repeater中要这样调用,复制代码 代码如下:<%#th
在后台cs文件中有个函数:
复制代码 代码如下:
public string getStyle(object style)
{
if ((int)style == 1)
{
return "文字";
}
return "图片";
}

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