We need to reset the below properties on Page Postback
- SSPList - This property parses your string and builds a List to setSspId property
- GroupId - A Guid
- TermSetList - This property parses your string and builds a List to set the TermSetId property
Refer below code
//Create taxonomy Session, term store, term set & group to pull metadata from Term Store Management
TaxonomySession _TaxonomySession = new TaxonomySession(SPContext.Current.Site);
TermStore _TermStore = _TaxonomySession.TermStores["Managed Metadata Service"];
Group _Group = _TermStore.Groups["System"];
TermSet _TermSet = _Group.TermSets["Keywords"];
//Assign the Term Store & Term Set to Taxonomy Control which helps to provide suggestions or pick metadata while you type in run time.
_TaxonomyWebTaggingControl.SspId.Add(_TermStore.Id);
_TaxonomyWebTaggingControl.TermSetId.Add(_TermSet.Id);
Hopes this helps