网格视图中的对象绑定错误的自定义列表

时间:2015-05-26 08:25:09

标签: c# asp.net

我的c#类是

public class Otp
{
    public String Time;
    public Otp()
    {

    }
    public void setTime(String Time)
    {
      this.Time = Time;
    }

    public String getTime()
    {
        return this.Time;
    }    
}

我的问题是,当我将对象列表绑定到网格视图时,它给出了错误,我该如何解决这个问题呢?

2 个答案:

答案 0 :(得分:2)

数据绑定只能绑定属性,而Time定义为成员变量。要使Time成为属性,请使用getter和setter定义它:

public String Time { get; set; }

并且不需要额外的get和set方法。

答案 1 :(得分:-1)

SELECT a.id, a.type, b.name FROM table1 a INNER JOIN table2 b ON 
    a.type = 1 AND a.id = b.id
UNION
SELECT a.id, a.type, c.name FROM table1 a INNER JOIN table3 c ON 
    a.type = 2 AND a.id = c.id