This question is locked. New answers and comments are not allowed.
Example scenario:
public class Kind // Hierarchical data{ public int ID { get; set; } public string Name { get; set; } public virtual Kind Parent { get; set; } } public class News // Data for which I want to create an 'Insert new...' page{ public int ID { get; set; } public string Title { get; set; } public string Content { get; set; } public virtual Kind Kind { get; set; } }I have a form, where I put Title and Content editors, and the Tree for selecting the Kind.
I can populate the Tree simply enough, but when I post the form data, how can I read which item is selected? Or am I missing something really obvious??? :-)
Thanks in advance
Andrea