
2 件の回答

Hi Divya,Modify your VF page as below.
You can change header name as per your requirement.Kindly mark this answer as best answer if it helps you.Regards,Sagar<apex:page showChat="false" sidebar="false" controller="book4">
<apex:form >
<apex:pageblock >
<apex:pageblockButtons location="top" >
<apex:commandButton value="search" action="{!search}"/>
</apex:pageblockButtons>
<apex:pageBlockSection title="book">
<apex:inputText value="{!N1}"/>
<apex:pageBlockTable var="a" value="{!Bk1}">
<apex:column headerValue="Account hyperlink">
<apex:outputlink value="/{!a.Id}">{!a.Name}
</apex:outputlink>
</apex:column>
<apex:column value="{!a.name}"/>
</apex:pageBlockTable>
</apex:pageBlockSection>
</apex:pageblock>
</apex:form>
</apex:page>