21/12/2005, 06:05
|
| | | 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 |