I have a master page with a TextBox and LinkButton. If I enter text in the TextBox and try to access it from the click event of the LinkButton it is always returned as an empty string. I am trying to pick up the entered text and pass it as a parameter to another page.
Example code:
Response.Redirect(HttpUtility.HtmlEncode(String.Concat("~/Pages/SearchResults.aspx?search=", Me.SearchTextBox.Text.Trim)))