我正在开发一个 .NET 应用程序,当在我的本地计算机上的浏览器中运行时,它似乎运行正常。我们需要能够在远程桌面连接到另一台机器时在浏览器中运行应用程序。当我们尝试这样做时,某些按钮不起作用。
该按钮正在尝试使用以下方法:
<asp:ModalPopupExtender ID="mpe" runat="server" TargetControlID="btnid"
PopupControlID="pnl" CancelControlID="btnClose"
BackgroundCssClass="modalBackground" PopupDragHandleControlID="pnlStep1Title"
BehaviorID="mpeStep1Behavior" />
我在 chrome 中运行应用程序并在控制台中看到错误(在本地运行时我没有看到相同的错误)
GET http://(website)/ScriptResource.axd?d=fAJd3QoJckE-KfCRKu0rXTnbHtCiSPC9wy5gn0SGQ4m9EASToqhX-yfTbp0- JXKc0&t=11e6618b 500 (( Not implemented ))
correctingentries.aspx:9GET http://(website)/ScriptResource.axd?d=fAJd3QoJckE- KfCRKu0rXTnbHtCiSPC9wy5gn0SGQ4mfxWYuCx0uHvZeydfnE2L70&t=11e6618b 500 (( Not implemented ))
correctingentries.aspx:3Uncaught ReferenceError: Sys is not defined
(anonymous function)correctingentries.aspx:3
correctingentries.aspx:315Uncaught ReferenceError: Sys is not defined
(anonymous function)correctingentries.aspx:315
correctingentries.aspx:1030Uncaught ReferenceError: Sys is not defined
Page_ValidationActivecorrectingentries.aspx:1030
(anonymous function)
我确定我错过了一些必须在远程桌面机器上进行但无法找到的设置或安装。我希望其他人已经看到了这个问题。
谢谢!约翰