Thanks Noffie
Solved the issue, maybe you can help me with this error:the previous page is "default.aspx", however the control doesn't reside on that page. Since I use master pages, I have to select Master rather than PreviousPage.
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If PreviousPage IsNot Nothing Then
Dim txtBoxSrc As New TextBox
txtBoxSrc = CType(PreviousPage.FindControl("searchbox")CType(Master.FindControl("searchbox"), TextBox)
If txtBoxSrc.Text txtBoxSrc IsNot Nothing Then
MsgBox(txtBoxSrc.Text)
End If
End If
End Sub
<div class="gsSearch">
<asp:TextBox ID="searchbox" runat="server"></asp:TextBox>
<asp:Button ID="searchbutton" runat="server" Text="search"
UseSubmitBehavior="true" PostBackUrl="~/search.aspx" />
</div>
When it gets to If txtBoxSrc.Text IsNot Nothing Then it throws a null reference exception. Any idea why this might be happening?
