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

How to create custom record detail page
Hai,
How create custo record detail page by using standard controller (or) custom controller
here my vf page
<apex:page sidebar="false" standardController="Employee_Information__c" >
<apex:form >
<apex:pageBlock title="Record Detail Page">
<apex:pageBlockSection title="Record Page">
<p> First Name ::: {!Employee_Information__c.First_Name__c} Employee_Information__c</p>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>
please help me any one
How create custo record detail page by using standard controller (or) custom controller
here my vf page
<apex:page sidebar="false" standardController="Employee_Information__c" >
<apex:form >
<apex:pageBlock title="Record Detail Page">
<apex:pageBlockSection title="Record Page">
<p> First Name ::: {!Employee_Information__c.First_Name__c} Employee_Information__c</p>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>
please help me any one
Use apex:detail tag to implement this.
Reference :
https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_compref_detail.htm
There are various attributes supported by detail tag which you can find at below link :
https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_compref_detail.htm
Please make sure that after creating this custom VF page you should override your standard VIEW button with this VF page.
Regards,
Abhishek