I have a search textbox situated on a masterpage like so:

<asp:TextBox ID="frmSearch" runat="server" CssClass="searchbox"></asp:TextBox>
<asp:LinkButton ID="searchGo" PostBackUrl="search.aspx"  runat="server">GO</asp:LinkButton>

The code behind for the search page has the following to pick up the textbox value (snippet):

if (PreviousPage != null && PreviousPage.IsCrossPagePostBack)
        {
            Page previousPage = PreviousPage;
            TextBox tbSearch = (TextBox)PreviousPage.Master.FindControl("frmSearch");
            searchValue.Text = tbSearch.Text;

            //more code here...
        }

All works great. BUT not if you enter a value whilst actually on search.aspx, which obviously isn't a previous page. How can I get round this dead end I've put myself in?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

If you use the @MasterType in the page directive, then you will have a strongly-typed master page, meaning you can access exposed properties, controls, et cetera, without the need the do lookups:

<%@ MasterType VirtualPath="MasterSourceType.master" %>

searchValue.Text = PreviousPage.Master.frmSearch.Text;

EDIT: In order to help stretch your imagination a little, consider an extremely simple property exposed by the master page:

public string SearchQuery 
{
    get { return frmSearch.Text; }
    set { frmSearch.Text = value; }
}

Then, through no stroke of ingenuity whatsoever, it can be seen that we can access it like so:

searchValue.Text = PreviousPage.Master.SearchQuery;

Or,

PreviousPage.Master.SearchQuery = "a query";
link|improve this answer
+1 - Correct I used to do this when working with web forms and found it handy enough to write a bit about it – m.edmondson Oct 12 '11 at 10:50
I've tried this but it seem reluctant to expose frmSearch. – ComfortablyNumb Oct 17 '11 at 9:00
I wouldn't take this so literally; you can expose a string property which can get and/or set the text of the private control. – Mr. Disappointment Oct 17 '11 at 9:27
so your example won't work??? – ComfortablyNumb Oct 17 '11 at 10:19
I've updated my answer, hopefully this should be straightforward enough. – Mr. Disappointment Oct 17 '11 at 11:11
show 1 more comment
feedback

All you need is:

TextBox tbSearch = (TextBox)PreviousPage.Master.FindControl("frmSearch");
searchValue.Text = tbSearch.Text;

No need to worry about whatever 'previous page' is.

As @Mr.Disappointment also says you should look at having strongly-typed access.

link|improve this answer
Works fine from any other page other than search.aspx. If I try to search from that page I get:System.NullReferenceException {"Object reference not set to an instance of an object."} – ComfortablyNumb Oct 12 '11 at 11:11
May be because you've modified the PostBackUrl, take a look at the Request.Form collection which should hold what you need. – m.edmondson Oct 12 '11 at 11:16
Sorry but I still can't search from the search page. Removing the if statement causes the NullReferenceException error – ComfortablyNumb Oct 17 '11 at 8:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.