惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
博客园 - 司徒正美
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
The Cloudflare Blog
D
DataBreaches.Net
J
Java Code Geeks
G
Google Developers Blog
L
LangChain Blog
N
Netflix TechBlog - Medium
Stack Overflow Blog
Stack Overflow Blog
月光博客
月光博客
酷 壳 – CoolShell
酷 壳 – CoolShell
WordPress大学
WordPress大学
小众软件
小众软件
量子位
Apple Machine Learning Research
Apple Machine Learning Research
P
Proofpoint News Feed
博客园_首页
罗磊的独立博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog
腾讯CDC

博客园 - ProgrammingBookWorm

多层结构来开发ASP.NET程序 在.NET下多层架构企业管理系统的开发 VS2008中文试用版的破解 在ASP.NET 2.0中操作数据::使用ObjectDataSource展现数据 HTTP服务器状态代码定义(Status Code Definitions) CodeSmith快速向导(翻译) 利用.net 2.0中的TreeView控件与数据库绑定,生成无限级的树目录 用户控件中使用客户端脚本的控件名称问题 用户中心 - 博客园 图解Windows2003邮件服务器 Making sense of ASP.Net Paths JScript .NET Fundamentals JScript IntelliSense in Visual Studio Orcas javascript中String 对象属性和方法 Window.Open详解 Get Query String variables in JavaScript ASP.NET Script Exploits Overview ASP.NET / How to: Implement Simple Forms Authentication How to: Implement Simple Forms Authentication
JScript Debugging in Visual Web Developer Orcas
ProgrammingBookWorm · 2008-01-15 · via 博客园 - ProgrammingBookWorm
JScript Debugging in Visual Web Developer Orcas

Jeff King made a recent post to show off the new JScript IntelliSense feature in the March CTP of Visual Studio. Now I am going to show off the improved JScript Debugging experience in the March CTP.

The first thing you will notice is that when you try to debug an IE page, VS will give you a nice little dialog reminding you to turn on script debugging in IE:

Here is the Advance tab in IE:

After you've turned on script debugging in IE, you can set a breakpoint in your ASPX document right away!

You might notice a little diamond inside the breakpoint glyph and wonder what that means. The little diamond indicates this is a mapped breakpoint. This breakpoint will get mapped automatically to the run-time document when you debug the page (F5).

Debug the page (F5) and VS will pause at the breakpoint:

If you look closely, the execution actually paused in the run-time document instead of the design-time document:

You can set breakpoints in the run-time document and they will get saved back to the design-time document. No Problem!

You can switch between your design-time and run-time documents easily in the Solution Explorer:

You can examine an object's data when the execution is paused. The type information is much richer than in Visual Web Developer 2005:

Visual Web Developer 2005 

 

Visual Web Developer Orcas

Not only can you see the real types of the objects but also the methods:

Plus you can navigate the DOM more easily:

Still feel like something is still missing? How about visualizers for reading long text:

Enjoy!

Barry Tang
Software Design Engineer
Visual Studio Web Tools

Posted: Friday, March 09, 2007 1:03 AM by

New Comments to this post are disabled