System.AggregateException

时间:2019-05-20 11:36:56

标签: c# asp.net model-view-controller

请协助,我一直在努力从数据库中获取数据,这些数据应该用记录列表更新视图。

这是我的代码的一部分,给出500错误并中断了我的应用程序

    <!DOCTYPE html>
<html>

<body>
    <div id="block">

        <img id="img" src="img.jpg"/>
        </div>
        <script>
            a.onmousedown = function() {
                b.onmousemove = function move(event) {
                    var x = event.clientX;
                    var y = event.clientY;
                    a.style.top = y + "px";
                    a.style.left = x + "px";

                };



};
            var a = document.gertElementById("img");
            var b = document.getElementById("block");

            function make() {
                var h = window.innerHeight;
                b.style.height = h + "px";
                var w = window.innerWidth;
                b.style.width = w + "px";
            }
            window.onload = make;
        </script>
<style>
    #img {
        position: absolute;
        top: 0px;
        left: 0px;
    }
</style>

运行代码时出现此错误

  

InvalidOperationException:客户端找到的响应内容类型为   'text / html; charset = utf-8”,但预期为“ text / xml”。要求   失败并显示错误消息:

一直试图解决错误而没有运气

0 个答案:

没有答案