hi ,
TextBox txt = (TextBox)Page.PreviousPage.FindControl("TextBox1"); TextBox1.Text = txt.Text
this code is to get the text from another web page.. this is in c#.. can anyone put it in vb????
Dim txt As TextBox = CType(Page.PreviousPage.FindControl("TextBox1"), TextBox) TextBox1.Text = txt.Text
thanks a lot