I would like to basically extend PeopleEditor
to make it Serializable
in order to store in ViewState
because it is created dynamically and I need it during PostBack
.
I have this:
[Serializable]
public class PeopleEditor : Microsoft.SharePoint.WebControls.PeopleEditor, ISerializable
{
}
But am not sure where to go from there. Does anyone have some input?