• sahil dhatrak
  • NEWBIE
  • 0 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 3
    Replies
<apex:page controller="search_controller">

<apex:sectionHeader title="HomePage" subtitle="Search and History" description="Use this page to search and browse history"/>
<apex:form >
<apex:pageBlock >
<apex:pageBlockSection >
<apex:pageBlockSectionItem >
        <apex:outputLabel value="Enter Search Text "/>
        <apex:inputText />
     
       
</apex:pageBlockSectionItem>
</apex:pageBlockSection> 
       
<br>       <apex:commandButton value="Search"/> </br>
<br>       <apex:commandButton value="History"/> </br>

</apex:pageBlock>
</apex:form>
</apex:page>

this is the visualforce oage i created
<apex:page controller="search_controller">

<apex:sectionHeader title="HomePage" subtitle="Search and History" description="Use this page to search and browse history"/>
<apex:form >
<apex:pageBlock >
<apex:pageBlockSection >
<apex:pageBlockSectionItem >
        <apex:outputLabel value="Enter Search Text "/>
        <apex:inputText />
     
       
</apex:pageBlockSectionItem>
</apex:pageBlockSection> 
       
<br>       <apex:commandButton value="Search"/> </br>
<br>       <apex:commandButton value="History"/> </br>

</apex:pageBlock>
</apex:form>
</apex:page>

this is the visualforce oage i created