Magari non è il tuo caso, ma dal framework 2.0 puoi usare la
della classe Page, quando il trasferimento è effettuato con "il metodo Transfer oppure il cross-page posting" http://msdn.microsoft.com/it-it/libr...ge(VS.80).aspxcodice:Public Readonly Property Previouspage
Esempio per reperire il contenuto di una textbox:
codice:If Not Page.PreviousPage Is Nothing Then Dim SourceTextBox As TextBox SourceTextBox = CType(PreviousPage.FindControl("TextBox1"), _ TextBox) If Not SourceTextBox Is Nothing Then Label1.Text = SourceTextBox.Text End If End If