Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/12/2005, 06:05
Avatar de Jose_minglein2
Jose_minglein2
 
Fecha de Ingreso: noviembre-2004
Mensajes: 2.344
Antigüedad: 20 años, 1 mes
Puntos: 8
function devolvervalor()
{
var i = 2+3;
__doPostBack('mifuncion',i);
}


en codebehind:

sub pageLoad(..)
if ispostback
if request.form("__eventtarget") ="mifuncion"
dim valor = request.form("__eventargument")
end if
end if

end sub