I have an aspx page (SearchResults.aspx) which is based on a master page (RDContent.master), which in turn is based on another master page (RDMasterPage.master).
At the top of RDMasterPage.master is a search facility (text box and button) where the user can type a search string and a button to perform the search.
Now, I want to use the text box as the parameter for a ListView on the SearchResult.aspx page.
Below is a code snippet form SearchResult.aspx
<%@ Page Title="" Language="VB" MasterPageFile="~/RDContent.master" AutoEventWireup="false" CodeFile="SearchResults.aspx.vb" Inherits="SearchResults" %>
<%@ MasterType TypeName="RDMasterPage" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
... and the codebehind
Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
...
Go to the complete details ...