<head runat="server">
<title></title>
<link href="Stylesheet1.css" rel="Stylesheet" type="text/css" />
<script type="text/javascript" src="domapi_45_professional [1]/src/domapi.js"></script>
<script type="text/javascript">
if (domapi) {
alert(domapi.version);
}
</script>
<asp:ContentPlaceHolder ID="head" runat="server">
</asp:ContentPlaceHolder>
</head>
Prior to adding the above Code, the WebPage that I am creating would run without error. After adding the above Code I received the following errors in Internet Explorer:
"Sys.Res.enumValueNotInteger" is null or not an object
"Sys.Res.argumentUndefined" is null or not an object
"Sys.UI.DomEvent" is null or not an object
"Sys.Application" is null or not an object
If I "Ignore" these errors, the WebPage goes ahead and runs fine. If I disable Script Debugging in "Options", then the Page runs fine.
Are these specific errors anything to worry about?
Is there a way to get rid of them?