Ver Mensaje Individual
  #6 (permalink)  
Antiguo 05/05/2009, 06:48
Krato
 
Fecha de Ingreso: mayo-2008
Mensajes: 117
Antigüedad: 16 años
Puntos: 0
Respuesta: Problema tonto con asp.net - ayuda!

Cambia ésto:

Código PHP:
Protected Sub Page_Load(ByVal sender As ObjectByVal e As System.EventArgsHandles Me.Load
        
If IsPostBack False Then
            
var = 2
        End 
If
End Sub 
por esto:

Código PHP:
Protected Sub Page_Load(ByVal sender As ObjectByVal e As System.EventArgsHandles Me.Load
        
If Not IsPostBack Then
            
var = 2
        End 
If
End Sub 
A ver si así te funciona