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

推荐订阅源

GbyAI
GbyAI
阮一峰的网络日志
阮一峰的网络日志
G
Google Developers Blog
J
Java Code Geeks
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
Vercel News
Vercel News
L
LangChain Blog
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Stack Overflow Blog
Stack Overflow Blog
P
Proofpoint News Feed
腾讯CDC
博客园_首页
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
M
MIT News - Artificial intelligence
WordPress大学
WordPress大学
D
DataBreaches.Net
Microsoft Security Blog
Microsoft Security Blog
有赞技术团队
有赞技术团队
博客园 - 叶小钗

博客园 - 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