Hola muy buenas a todos.
Estaba siguiendo un ejemplo de jQuery que encontre en esta web. He revisado el código y aparentemente yo lo veo igual, no veo nada extraño, pero no me esta funcionando y me da error en Linea 11 "Se esperaba un objeto". Dejo la imagen de el depurado.
Aqui el código desde donde hago la llamada en ASP.NET
Código:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebManagement.Private.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>Administración web</title>
<link href="~/Resources/Desing/sTabs.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="~/Scripts/jquery-1.4.1.js"></script>
<script type="text/javascript">
jQuery(document).ready(function () {
});
</script>
</head>
<body style="height: 527px; width: 899px;">
<form id="form1" runat="server">
<div>
<asp:Button ID="btnAccept" runat="server" Text="Ok" />
<asp:Button ID="btnCancel" runat="server" Text="Cancel" onclick="btnCancel_Click" />
</div>
</form>
</body>
</html>