You need to sign in to do that
Don't have an account?

Question about Contacts tab?
Hi, I was wonder if you can add your own block of information onto the standard contacts page. I like what is on there already but I do not want to override the page but add a section on the page.
Thanks for any help you can give.
The usual way is to create an apex page and then place the page onto the page layout.
<apex:page standardController="Contact" extensions="myExtension"> <!-- do stuff here --> </apex:page>
You need to make sure that you size the component after laying it on thepage layout, or it may be cut off (or use scrollbars). I believe there will be a way to dynamically resize in a future release.
Yes you can , in the page layout section you can add 'Visualforce page' or 'S-control page' .
or just related list
Error: Apex class 'myExtension' does not exist
Then when I go to create a class, I can not create an apex class. My developer account I can but not my non profit account.
myExtension is the relationship name between the contact object and the object that you want to access.
You should create it first before you can use.