Valid DEX-450 Dumps shared by ExamDiscuss.com for Helping Passing DEX-450 Exam! ExamDiscuss.com now offer the newest DEX-450 exam dumps, the ExamDiscuss.com DEX-450 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com DEX-450 dumps with Test Engine here:
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?