Question: How can I find the ID of the current contact/lead from a different portal page in SalesLogix?
Answer: Use this –
Sage.Entity.Interface.Icontact con = this.bindingsource.current as Sage.Entity.Interface.Icontact;
string str = con.Id ;
Question: How can I find the ID of the current contact/lead from a different portal page in SalesLogix?
Answer: Use this –
Sage.Entity.Interface.Icontact con = this.bindingsource.current as Sage.Entity.Interface.Icontact;
string str = con.Id ;