Consider the following code snippet:
HTML
<apex:page docType="html-5.0" controller="FindOpportunities">
<apex:form >
<apex:pageBlock >
<apex:pageBlockSection title="find opportunity">
<apex:input label="opportunity name"/>
<apex:commandButton value="search" action="{!search}"/>
</apex:pageBlockSection>
<apex:pageBlockSection title="Opportunity List" id="opportunityList">
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>
Users of this Visualforce page complain that the page does a full refresh every time the Search button is pressed. What should the developer do to ensure that a partial refresh is made so that only t13he section identified with opportunityList is re-drawn on the screen?1415
Submit