function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
tulasiram chtulasiram ch 

why im getting this error

User-added imageUser-added image
Best Answer chosen by tulasiram ch
Abhishek_DEOAbhishek_DEO
Because, you are using {!status} in <apex:outputText>.You should declare this as property in controller class.
For eg. public string status {get;set;}

All Answers

Abhishek_DEOAbhishek_DEO
Because, you are using {!status} in <apex:outputText>.You should declare this as property in controller class.
For eg. public string status {get;set;}
This was selected as the best answer
Arun KumarArun Kumar
Hi,

On the Line Number 14 of your VF page you are accessing {!status}. And this needs to be define on your controller.

Please let me know if the helps.

As a common practice, if your question is answered, please choose 1 best answer.
Additionaly you can give every answer a thumb up if that answer is helpful to you.

Thanks,
Arun