Hi
quick question!
Whats the Ecma2.2 equivalent of csentry["Attributename"].Value?
Trying to convert an XMA Managmnet Agent to ECMA 2.2 put having trouble reading attributes that's not in the Attributechanges.
Need to generate an URL with the employee ID field and the email field ,email field (changed)
emploeeID is not the anchor so i don't think i can use anchorattribute.
in XMA i just did this:
URL = exporturl + "/user/" + csentry["emploeeID"].Value + "/email/" + csentry["Mail"].Value;
in ECMA2 i can't seem to access the employeeid field:
URL = exporturl + ??????? + "/email/" + csentry.AttributeChanges["email"].ValueChanges[0].Value.ToString();