123
chenjingwu
2024-04-25 4c0d5f98fd8387c29f547f1da8ab6c7122afecca
1
2
3
4
5
6
7
8
9
10
11
12
<apex:page standardController="Account" recordSetVar="Accounts">
    <apex:form >
        <apex:pageblock >
            <apex:pageBlockTable value="{!accounts}" var="account">
                <apex:column value="{!account.Name}" />
                <apex:column value="{!account.Type}" />
                <apex:column value="{!account.Phone}" />
                <apex:column value="{!account.NumberOfEmployees}" />
            </apex:pageBlockTable>
        </apex:pageblock>
    </apex:form>
</apex:page>