24/05/2006, 01:08
|
| | Fecha de Ingreso: abril-2006
Mensajes: 166
Antigüedad: 18 años, 8 meses Puntos: 0 | |
Perdona, rectifico.
De todas formas te advierto que utilizo el aspbutton, con el button de html no me sale.Ahi va:
VB:
Partial Class _Default
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Me.Button1.Attributes.Add("onclick", "javascript:return validar();")
End Sub
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
MsgBox("La función JS devuelto TRUE")
End Sub
End Class
ASP:
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Página sin título</title>
<script>
function validar()
{
if (confirm('¿Confirma que desea aceptar?'))
return true;
else
return false;
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Button ID="Button1" runat="server" Text="Button" /> </div>
</form>
</body>
</html>
Así funciona (lo he probado), pero no se si a ti te servirá...
Saludos.
Última edición por aupaneu; 24/05/2006 a las 01:30 |