The only way I\'ve found to persist property values within a user control is to use the ViewState.
public string Title { get { return Convert.ToStrin
It depends. If you need to property values to be persisted beyond a post-back then you'll either have to use ViewState or Session. Since those controls are re-created on each post back you can't really maintain that state otherwise.