10-28-2010 12:29 PM
In Act for Web, how can i get and update the current contact details?
Can you give me some code samples?
Thanks.
10-29-2010 06:26 AM
This is sort of round-about, but it'll get you an array with only the current contact in it. We unfortunately don't have a current contact property:
Guid ID = new Guid(ACTSessionManager.CurrentContactID);
ContactList c = this.afw.Contacts.GetContactsByID(null, new Guid[1] { ID });
11-02-2010 03:20 PM
Is there a way to update the current contact fields on act for web using plug-in?
11-03-2010 07:28 AM
Update as in force the current contact to update, or do you mean to change the values of fields for the current contact?
11-07-2010 11:24 AM
change the values of fields for the current contact.