I\'ve an object that contains a field called DevList which is defined like this
public List DevList { get; set; }
Assuming this is how your class looks:
public class MyItem
{
public List DevList { get; set; }
}
And that
ds = List();
Do this:
In your code-behind:
protected string DisplayListOfDevelopers(object _devList)
{
//Cast your dev list into the correct object
}
In your markup:
Just be sure to make the function in your code-behind is protected or public.