If you are using default text in the SearchBox control, such as 'Search Here', you can clear the text when the user clicks in the search field using the following in the code behind page; SearchBox1.QueryTextBox.Attributes.Add("onclick", "this.value=''"); |