C# Ext.net阻止帧,原点异常

C# Ext.net阻止帧,原点异常,c#,asp.net,frame,ext.net,C#,Asp.net,Frame,Ext.net,当我尝试打开我的页面时,我会遇到以下异常(有时不总是): 我在用窗户。这可能是异常的原因吗? 窗口基本属性 <ext:Window runat="server" ID="winList" Hidden="True" Layout="VBoxLayout" Modal="True" AutoScroll="True" MinHeight="500" MaxHeight="500" MinWidth="1270"

当我尝试打开我的页面时,我会遇到以下异常(有时不总是):

我在用窗户。这可能是异常的原因吗?
窗口基本属性

<ext:Window runat="server" ID="winList" 
                    Hidden="True" Layout="VBoxLayout" Modal="True" AutoScroll="True" MinHeight="500"
                    MaxHeight="500" MinWidth="1270" MaxWidth="1270" X="20" Y="20" Closable="False">
                    <LayoutConfig>
                        <ext:VBoxLayoutConfig Align="Stretch" />
                    </LayoutConfig>


您遇到了CORS,您可以在此处阅读更多内容:@Zippy谢谢您的回答。但是我不明白。实际上我是一个新的ext.net用户。你能解释你的答案吗?谢谢当您想从网站外部显示窗口内容时,您会遇到此错误。例如,当您在本地计算机上运行应用程序时,窗口尝试从其他服务器加载某些内容。为了让它工作,你必须在你的服务器上配置CORS来接受你的本地机器。但是我在我的本地机器上遇到了这个错误。我没有使用其他服务器。窗口根据您的错误尝试从您的网站地址加载一些内容。(“阻止了源代码为“我的网站地址”的框架。)“我的网站地址”是本地主机吗?
<ext:Window runat="server" ID="winList" 
                    Hidden="True" Layout="VBoxLayout" Modal="True" AutoScroll="True" MinHeight="500"
                    MaxHeight="500" MinWidth="1270" MaxWidth="1270" X="20" Y="20" Closable="False">
                    <LayoutConfig>
                        <ext:VBoxLayoutConfig Align="Stretch" />
                    </LayoutConfig>