A developer created a Visualforce page and custom controller to display the account type field as shown below. Custom controller code: public class customCtrlr{ private Account theAccount; public String actType; public customCtrlr() { theAccount = [SELECT Id, Type FROM Account WHERE Id = :apexPages.currentPage().getParameters().get('id')]; actType = theAccount.Type; } } Visualforce page snippet: The Account Type is {!actType} The value of the account type field is not being displayed correctly on the page. Assuming the custom controller is property referenced on the Visualforce page, what should the developer do to correct the problem?
Laurene
9 months agoTheodora
9 months agoMila
10 months agoEttie
10 months agoMartha
10 months agoAnnette
10 months agoIn
10 months agoRyann
10 months agoMarquetta
10 months agoRosalind
10 months agoHerminia
10 months ago