He hecho una pagina que de primeras funciona bien y luego al reutilizarla me da un error.
Tengo la pagina paginaA y paginaB unidos a un MasterPage.
En el MasterPage, fuera del ContentPlaceHolder he creado un TextBox y un Button. El Button tiene PostBackURL="paginaB.aspx"
Escribo algo en el TextBox en paginaA, aprieto el Button1 y me redirige a "paginaB.aspx" y para que me pegue el contenido que tuvo TextBox de la anterior pagina utilizo:
Código:
hasta ahi funciona perfecto pero luego al querer hacer otra vez lo mismo me devuelve:Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim PreviusTextBox1 As TextBox PreviusTextBox1 = CType(PreviousPage.FindControl("ctl00$Textbox1"), TextBox) Label1.Text = PreviusTextBox1.Text End Sub
Server Error in '/WebSite14' Application.
--------------------------------------------------------------------------------
Object reference not set to an instance of an object.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.
Source Error:
Line 4: Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Line 5: Dim PreviusTextBox1 As TextBox
Line 6: PreviusTextBox1 = CType(PreviousPage.FindControl("ctl00$Textbox1"), TextBox)
Line 7: Label1.Text = PreviusTextBox1.Text
Line 8: End Sub