我的一亩三分地 我就喜欢!
13fen  设为主页
 收藏本站
 
当前位置: > 一亩三分地:首页 > 网络学院 > 网络编程 > ASP专区 > Asp未分类 > 如何解决visual interdev的调试问题
热门文章排行
热门文章排行 手推车”功能的实现(10-07)
八大法则防范ASP网站漏洞(10-23)
ASP教程十一、调试ASP脚本(10-23)
在JSP中访问数据库大全(10-23)
虚机服务中常见Asp.Net低级错误一览(03-21)
精采文章排行
精采文章排行 ASP.NET实现抓取网页中的链接(11-15)
ASP连接数据库的11种方法(11-10)
如何动态创建网页的RSS内容摘要(11-10)
ASP网站漏洞及入侵防范方法(11-10)
ASP自定义函数:对字符串正则替换(11-10)
技术专题推荐
网管论坛交流
 

如何解决visual interdev的调试问题 

作者:佚名   来源:一亩三分地   点击:   日期:2007-03-30

微软的这篇文章能彻底解决visual interdev的调试问题
需要安装visual interdev server,在visual studio 6.0的第二张盘上


HOWTO: Configure Your Web Server for Visual InterDev 6.0 ASP Debugging

--------------------------------------------------------------------------------
The information in this article applies to:

Microsoft Visual InterDev, version 6.0
Microsoft Windows NT Server version 4.0
Microsoft Windows NT Workstation version 4.0
Microsoft Windows 2000

--------------------------------------------------------------------------------


SUMMARY
This article describes the recommended steps to configure your Web server for remote and local Active Server Pages (ASP) script debugging for use with Visual InterDev 6.0. There are four basic things that you must do:

Install debugging components on the Web server.


Add the necessary users to the Administrators group of the Web server.


Configure DCOM permissions on the Web server.


Set up a Visual InterDev 6.0 project for debugging.





MORE INFORMATION

Install/Confirm Debugging Components on the Web Server
Install or ensure that you are running the following components:
Microsoft Personal Web Server 4.0 or Internet Information Server 4.0 or later.


Asp.dll version 4.02.0662 or later. If you have version 4.02.0662, the file size must be 330,448 bytes. You can install an updated version of Asp.dll by applying Windows NT Service Pack 4 or later.

You may have to stop Web services before applying a service pack in order for Asp.dll to get updated. From a command prompt, you can type the following to stop the Web services:


net stop iisadmin /y
Microsoft FrontPage Server Extensions version 3.0.2.1706 or later.


The Microsoft Visual InterDev Server components. If you do not see this listed in the Add/Remove Programs utility in Control Panel, you can install it by running Setup.exe from the VID_SS directory on Visual Studio CD-ROM 2 or on CD-ROM 1 of the Visual InterDev standalone version.


Remote Machine Debugger components (recommended).

If you do not see this listed in Add/Remove Programs, you can install it by running Setup.exe from the SCRPT_SS directory on Visual Studio disc 2 or on disc 1 of the Visual InterDev standalone version.


Visual Studio Service Pack 3 or later, if you are running Windows 2000.

You can download Visual Studio Service Pack 3 from the following location:


http://msdn.microsoft.com/vstudio/sp/vs6sp3/default.asp
NOTE: The Web server must be a Windows NT 4.0 Workstation/Server or a Windows 2000 Professional/Server/Advanced Server computer.



Add the Necessary Users to the Local Administrators Group of the Web Server
In order to correctly use debugging, you must be part of the local Administrators group on the Web server you will be debugging against.

Steps to add users to the Administrators group in Windows NT 4.0:
From the Start menu, select Run.


Type: usrmgr computer name and click ok.


Double-click the Administrators group in the bottom pane.


Add the users you want to allow to debug.


Steps to add users to the Administrators group in Windows 2000:
From the Start menu, select Programs, and then select Administrative Tools.


From the Administrative Tools menu, select Computer Management.


Expand Local Users and Groups under System Tools.


Select the Groups folder.


Double-click the Administrators group in the right pane.


Add the users you want to allow to debug.




Configure DCOM Permissions on the Web Server
From the Start menu, select Run.


Type dcomcnfg.exe and click ok.


On the Applications tab, scroll down to the Catalog Class and double-click it to view Properties.


Select the Security tab.


Click Use custom access permissions and then click Edit.


Add the users that you will allow to debug to this list, granting them Allow Access rights, or simply add the Administrators group to this list.


Select the Use custom launch permissions option and click Edit.


Add the users that you will allow to debug to this list, granting them Allow Launch rights, or simply add the Administrators group to this list.


Select the Identity tab.


Select the interactive user option.


Click Apply and then click ok.


Display the Properties for the Machine Debug Manager, and repeat steps 4-11 for the Machine Debug Manager.


Close the DCOM permissions dialog box and reboot your computer.


NOTE: The following are the minimum recommended accounts that should be in your DCOM permissions for both the Catalog Class and the Machine Debug Manager: Administrators, System, and Interactive.



Set Up a Visual InterDev 6.0 Project for Debugging
Create a new Web project in Visual InterDev 6.0.


Add an ASP page to the project.


Add the following lines of code to the new ASP page within the HTML body:


<%
Response.Write "hello world"
%>
Right-click on the Response.Write line and select Insert Breakpoint. This will set a breakpoint for that line, and a large red dot will appear to the left of the line in the border.


Right-click on the file in the Project Explorer and select Set as Start Page.


From the Debug menu, select Start.


A dialog box should appear asking if you would like to enable ASP debugging on this project. Select yes.


You will then be prompted for debugging credentials. Use one of the accounts that you added to the Administrators group.


The debugger should break on your breakpoint, and the line should be highlighted. Press F5 to continue.

NOTE: If remote debugging, the client is required to have Personal Web Server 4.0 or Internet Information Server 4.0 or later installed. ASP debugging is not supported on a Windows 95 or Windows 98 client.



REFERENCES
Please see the following Microsoft Knowledge Base article for a list of related debugging articles:

Q244272 Visual InterDev 6.0 Debugging Resources

Additional query words:

Keywords : kbDebug kbide kbNTOS kbWinOS2000 kbVisID600 kbGrpASP
Version : WINDOWS:6.0; winnt:4.0
Platform : WINDOWS winnt
Issue type : kbhowto
Technology : kbvcSearch


文章评论】 【收藏本文】 【推荐好友】 【打印本文】 【论坛讨论

   相关文章:
·ASP中巧用Response属性 ·第六课:ASP脚本循环语句
·在 Web 页上使用条件数值格式 ·连接数据库查询手册(不仅仅适用于asp)
·警惕"给你的FileSystemObject对象加把锁" ·用ASP做全文检索

   文章评论:(条)
  
 请留名: 匿名评论   点击查看所有评论 网管论坛
 

  责任编辑:一分  声明:刊登此文章是为了传递更多信息,文章内容仅供参考,转载请注明出处。