I have OOB sharepoint application. This has got the search enabled. I would like to give the default text for the search text box. So, I have given the following code in the Elements.xml file of SmallSearchInputBox Delegatecontrol. But still I dont see any default text in the search box. Please help me to fix this.Here is the code.
<?xml version="1.0" encoding="utf-8"?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<Control
Id="SmallSearchInputBox"
Sequence="10"
ControlAssembly="Microsoft.Office.Server.Search, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"
ControlClass="Microsoft.SharePoint.Portal.WebControls.SearchBoxEx">
<Property Name="GoImageUrl">/_layouts/images/gosearch15.png</Property>
<Property Name="GoImageUrlRTL">/_layouts/images/gosearchrtl15.png</Property>
<Property Name="GoImageActiveUrl">/_layouts/images/gosearchhover15.png</Property>
<Property Name="GoImageActiveUrlRTL">/_layouts/images/gosearchrtlhover15.png</Property>
<Property Name="DropDownMode">ShowDD_NoContextual</Property>
<Property Name="ScopeDisplayGroupName">Search Dropdown</Property>
<Property Name="FrameType">None</Property>
<Property Name="QueryPromptString">Search...</Property>
</Control>
</Elements>