Visual Studio XAML 网站。 Xaml 无法加载
以下 .aspx 页面:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Vowels.aspx.cs" Inherits="XMLPraktijkOpdrachtJavascript.Vowels" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Vowels</title>
<script type="text/javascript" src="Javascript/Vowels.js"></script>
</head>
<body>
<object id="VowelsPage" width="100%" height="100%" type="application/x-silverlight">
<param name="source" value="Xaml/Vowels.xaml"/>
</object>
</body>
</html>
使用此 xaml 文件:
http://pastebin.com/1sFX93Bp (有点长在这里发布)
但我的页面根本无法加载。曰白。但是,如果我注释掉第 20 行中的所有内容,它就会起作用(即:执行其余代码)。
可能是什么问题,或者有没有合适的 Xaml 调试器?由于 Visual Studio 不允许您在 xaml 文件中放置断点。
Following .aspx page:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Vowels.aspx.cs" Inherits="XMLPraktijkOpdrachtJavascript.Vowels" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Vowels</title>
<script type="text/javascript" src="Javascript/Vowels.js"></script>
</head>
<body>
<object id="VowelsPage" width="100%" height="100%" type="application/x-silverlight">
<param name="source" value="Xaml/Vowels.xaml"/>
</object>
</body>
</html>
Uses this xaml file:
http://pastebin.com/1sFX93Bp (it's a bit long to post here)
But my page simply won't load. It says white. If I comment out everything from line 20 however, it does work (ie: the remaining code executes).
What could be the problem, or are there any decent Xaml debuggers out there? Since Visual Studio won't let you put breakpoints in xaml files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将其更改
为
,并且您还需要删除
并更改
为
完整的xaml脚本如下所示,
can you please change this
to
and also you need to remove
and change
to
The complete xaml script is shown as below,