Hola a todos
una clase llamada ingreso.MIT en la que llamo a la funcion sub borra(),
el tema es que debo agregarle a esa funcion el campo.usuario para cuando imprima el msgbox en pantalla me diga algo asi : ¿confirma que desea elminar a?+campo.usuario, NO SE COMO DEBO LLAMAR A MI VARIABLE
por ejemplo: confirma que desea elminar a PEPITO
<script type="text/vbscript" language="vbscript">
sub Borra()
if len(trim("<%=CapaHTML.MsgElimina%>")) <> 0 then
msg_elimina = replace("<%CapaHTML.MsgElimina%>","*",chr(13))
else
msg_elimina = "&&"
end if
DTR_xx = msgbox("¿Confirma que Desea eliminar? "& vbcrlf & msg_elimina & vbcrlf & "Recuerde :"& vbcrlf & vbcrlf & "' Este Proceso es Irreversible ",260+4096,"ATENCION !!!")
if dtr_xx <> "6" then
exit sub
end if
Set formulario=document.<%= capaHTML.NombreFormulario %>
Formulario.nuevo.value = "BE"
Formulario.submit()
end sub
</script>
ACÀ MI HTML :
<% If Trim(CapaHTML.TipodeIngresoDato) <> "SI" And Not CapaHTML.SinBotonEliminar Then%>
<input type="button" value="Eliminar" name="Be" class="boton"
onclick="Borra()" />
<% end if %>
ESPERO QUEME PUEDAN AYUDAR YA QUE N ENCUENTRO UNA MANERA DE COMO LLAMAR A ESA VARIABLE PARA INTEGRARLA EN EL VBSCRIPT