Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
<apex:page standardController="User" recordSetVar="records" id="thePage"> <apex:form id="theForm"> <apex:pageBlock id="thePageBlock"> <apex:pageBlockTable value="{!records}" var="record" id="thePageBlockTable"> <apex:column > <apex:outputField value="{!record.Name}" /> <apex:facet name="header">Name</apex:facet> </apex:column> <apex:column > <apex:outputField value="{!record.Email}"/> <apex:facet name="header">Email</apex:facet> </apex:column> <apex:column > <apex:outputField value="{!record.IsActive}" /> <apex:facet name="header">Active</apex:facet> </apex:column> </apex:pageBlockTable> </apex:pageBlock> </apex:form> </apex:page>
Use the code you can display list active users in visualforce page.
Let me know if you need any help regarding this.
Thanks,
Vijay