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
andyaldis1.3969086903835708E12andyaldis1.3969086903835708E12 

Standard Controller not allowing me to use my custom objects

Hi all,

I am brand new to Salesforce but have some HTML, JQuery, CSS, and Java experience so I am able to figure somethings out.  I am trying to create a visual force page to a cutom object I created called recipes.  Every time I try to enter it using the following tag <apex:page standardController="Recipe"/>  I get an error message telling me it does not know what Recipe is.  Although there may be some problems with my tag in this post please ignore it my tag is right on the visual force editor.  Is there another contoller or Apex code I should use?
Ramu_SFDCRamu_SFDC
As recipes is a custom object you need to suffix the name with '__c'. So the first line should read as 

<apex:page standardController="Recipes__c"/>

Review the below article from one of the blogs on visualforce page creation for custom object

http://my.safaribooksonline.com/book/programming/forcedotcom/9780978963958/visualforce-pages/ch09lev1sec3