views:

76

answers:

5

hi folks , I'm trying to develop a website using visual force with apex. but i'm unable., please guide me .. i'm unable to find the docs regarded with the visual force..

help me with the documents and websites regarding them !! please !!

+2  A: 

How about the links listed here?

[edit:] Try this too.

Leo Jweda
A: 

Based on the comment to the question (doesn't really answer the original question):

Let's say your salesforce environment is on https://na5.salesforce.com, your visualforce page is called "myPage", and you want to display on it data from "myCustomObject__c". Let's also say that there exists at least 1 record in the table of myCustomObjects and it's ID is "0067000000AH3ME" (you can see the ID of the object in the URL when you view it like https://na5.salesforce.com/0067000000AH3ME).

If your visualforce page looks similar to this:

<apex:page standardController="myCustomObject__c">
   <apex:pageBlock title="Hi Javatechi">
      <p>You're viewing the {!myCustomObject__c.Name} record.</p>
   </apex:pageBlock>
   <apex:detail relatedList="false" />
</apex:page>

Then this page should display something meaningful when you visit it via this url: https://na5.salesforce.com/apex/myPage/?id=0067000000AH3ME

If you'll be able to make this example work for you, all the rest like <apex:inputField> and <apex:commandButton> should start to work too.

eyescream
yeah correct thank you...this will be helpful to retrieve for one data..what if i want to retrieve all the records ??
javatechi
eyescream
A: 

The best thing you can do to get started is checkout:

An Introduction to Force.com Sites

Ryan Guest
A: 

Visualforce documentation: http://www.salesforce.com/us/developer/docs/pages/index.htm

Ryan Guest
A: 

Run screaming from salesforce now, before it is too late. It only gets worse.

Ben

related questions