Alex Ivanoff
2007-03-01 21:20:21 UTC
Is it possible to data bind a web control (DropDownList) to a list of
business objects which do not have properties but accessor methods instead:
public class State
{
private String _abbr;
private String _name;
public String GetAbbr()
{
return this._abbr;
}
public String GetName()
{
return this._name;
}
}
Thank you,
Alex
===================================
This list is hosted by DevelopMentor® http://www.develop.com
View archives and manage your subscription(s) at http://discuss.develop.com
business objects which do not have properties but accessor methods instead:
public class State
{
private String _abbr;
private String _name;
public String GetAbbr()
{
return this._abbr;
}
public String GetName()
{
return this._name;
}
}
Thank you,
Alex
===================================
This list is hosted by DevelopMentor® http://www.develop.com
View archives and manage your subscription(s) at http://discuss.develop.com