Disabling Sidebar in Visualforce page
Sample Code:<apex:page sidebar = "false"></apex:page>
Sample Code:<apex:page sidebar = "false"></apex:page>
Sample code:<apex:detail subject = "{!account.Id}" inlineEdit = "true">
String soql = "SOQL Query"; list_namae = Database.(soql); Example: List<Account> acc {get; set;} String soql = "SELECT Name FROM Account"; acc = Database.query(soql);
Visualforce: <apex:page standardController="Member__c" extensions="Search" > <style type = "text/css"> .Bld { font-weight:bold;} </style> <apex:form > <apex:pageblock title="Members" > <table align = "center" width ....
Visualforce: <apex:page standardController="Photo__c" extensions="SlideShow" sidebar="false"> <apex:form > <center> <apex:image url="{!tmp}"/> <br/> <br/> <br/> <apex:commandButton action="{!prev}" value="Previous"/> <apex:commandButton action="{!nxt}" value="Next"/> ....