Basically, i want my object back...
I have an Email object.
public class Email{ public string emailAddress; public bool primary; public int c
If you want to hold onto an object like this its easiest to use the viewstate, although you will be duplicating the data but for a small object it should be ok.
ViewState.Add("EmailObj", Email); EMail email = (Email)ViewState["EmailObj"];