| Salesforce Integration / How To | |
trigger AccountName on Account (before insert, before update) {
for (Account a: Trigger.new){
a.Name = a.BillingFirstName__c+' '+a.BillingLastName__c;
}
}
<apex:page standardController="Account"
action="{!URLFOR($Action.Account.New,null,[acc2='<ignore>'],true)}">
</apex:page>
XML Author