In my master page I have 2 contentplace holders.
<table border=2>
<tr><td>
<asp:contentplaceholder id="ContentPlaceHolder1" runat="server">
</asp:contentplaceholder>
</td></tr>
<tr><td>
<asp:contentplaceholder id="ContentPlaceHolder2" runat="server">
</asp:contentplaceholder>
</td></tr>
</table>
Also I have 2 .aspx pages for the 2 contentplaceholders. I have a search text box and submit button in my first page (page1.aspx). When the user enters some data and clicks on the search button I want to send the contents of the text box to the second aspx page (page2.aspx). I simply use the response.redirect command to send the text. I have no problems in sending the text. My problem is the moment I click on the search page it disappears and the page 2 comes up. These 2 pages are in 2 different contentplaceholders. I am not sure why it is hiding one page. Am I doing anything wrong?
Please advice.
Your valuable feedback is greatly appriciated.