I need to implement SharePoint 2013 Enterprise Search functionality.
Below are the requirements.
SharePoint 2013 Enterprise Search functionality will be configured. A maximum of 5 custom Result Sources and 5 custom result types will be considered.
A simple search text box will be included in the header of the website so that the user can perform search from any page of the website. A link for Advanced Search will also be present through which users can conduct refined searches, if needed.
Search will be applied on the following:
- Portal Content
- Document Metadata
- Document Content
I've a search text box and button to search items in my master page as in below image
and html for the search text box and search button image is as below
<div class="search">
<input name="" type="text" />
<input name="" type="button" />
</div>
Can anyone tell me what i need to do with the above html in the master page so i can implement enterprise search.
I never implemented search before so please mention step by step procedure how do i need to implement it.