Como resolver “Erro de tempo de execução do Microsoft JScript: '[Nome do método]' está indefinido”

Aqui está o meu código:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebClient._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></title>
    <script type="text/javascript" src="Scripts/jquery-1.4.1.min.js" />
    <script type="text/javascript" language="javascript">
        var count = 0;
        function Start()
        {
            setInterval("ReadNotification()", 1000);
        }
        function ReadNotification()
        {
            alert(++count);
        }
    </script>
</head>
<body onload="return Start();">
</body>
</html>

Acabei de executar este código e recebi um erro clássico:

Microsoft JScript runtime error: 'Start' is undefined

Não sei por que, porque realmente defini esse método. Como posso resolver esse problema?

Muito obrigado

questionAnswers(1)

yourAnswerToTheQuestion