Sunday, April 28, 2013

javascript error : Microsoft JScript runtime error: Member not found.


Microsoft JScript runtime error: Member not found.

When I put a button as well as a javascript function on a page with same name “aa”, I got this error.

<script type="text/javascript">
        function aa() {
            alert("asd");
        }    
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
   
    </div>
    <asp:Button ID="aa" runat="server" OnClientClick="aa();"/>

No comments:

Post a Comment

How to check local and global angular versions

 Use the command ng version (or ng v ) to find the version of Angular CLI in the current folder. Run it outside of the Angular project, to f...