Hello,

I am working on a site which has to have a search form on every page. So I decided to put it in a Master page. Then on the submit button I place the following property:
Code:
PostBackUrl="~/Search.aspx"
From a page (say the Default.aspx one) I access the search form controls with the following code:
Code:
TextBox tbPriceFrom = (TextBox)Master.FindControl("tbPriceFrom");
TextBox tbPriceTo = (TextBox)Master.FindControl("tbPriceTo");
My problem is that the controls are not populated with the entered from the user data.

Please, help.

Thanks.