这是我在前台页面要显示的:<td><%# DataBinder.Eval(Container.DataItem,"ID") %></td>现在我要根据ID的值的正负,把ID显示成不同的颜色,所以我加了如下逻辑判断:if (int.Parse(DataBinder.Eval(this.Repeater1.Items[0], "ID").ToString()) >0)报:未将对象引用设置到对象的实例求名位大虾帮助。
2 回答
杨魅力
TA贡献1811条经验 获得超6个赞
<%# Convert.ToInt32(DataBinder.Eval(this.Repeater1.Items[0], "ID")) > 0 ? "Red" : "Blue" %>
数据绑定一定要用<%# %>
- 2 回答
- 0 关注
- 991 浏览
添加回答
举报
0/150
提交
取消