HOla... página nueva vale? Tengo esto en la página:
<%@ 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 type="text/javascript">
function prueba()
{
alert('Esto es una prueba');
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Button ID="Button1" OnClick="prueba();" runat="server" Text="Button" />
</div>
</form>
</body>
</html>
Al hacer click en el boton me sale el error:
BC30456: 'prueba' no es un miembro de 'ASP.default_aspx'.
????
He probado con "javascript:prueba();", cambiando <script type="text/javascript"> por <script> pero nada... q pasa?