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
saran kumar 9saran kumar 9 

quick help needed : Inputting Data Using Forms

here is the code i wrote




when i check the challenge ...i am getting this error

The page does not have a bound '{!save}' action for saving the contact record  






User-added image
Best Answer chosen by saran kumar 9
Abhilash Mishra 13Abhilash Mishra 13
hey u have already closed <apex:commandbutton>

change this to 
<apex:pageblockbuttons>
  <apex:commandbutton action="{!save}"  value="save"/>
</apex:pageblockbuttons>

 

All Answers

Abhilash Mishra 13Abhilash Mishra 13
hey u have already closed <apex:commandbutton>

change this to 
<apex:pageblockbuttons>
  <apex:commandbutton action="{!save}"  value="save"/>
</apex:pageblockbuttons>

 
This was selected as the best answer
saran kumar 9saran kumar 9
thanks a lot sir ....
saran kumar 9saran kumar 9
please help me in solving this trailhead task

https://developer.salesforce.com/trailhead/visualforce_mobile_salesforce1/visualforce_mobile_salesforce1_actions_global

The 'BusinessCard' page must display the current user's first name, last name, email, phone, and title information using the appropriate Visualforce global variables.
The page should have an input field to enter an email address and a 'Send' button that allows users to quickly email their contact information to others. Implementing this requirement is optional for passing this challenge.  

please can u help me ..i need the code