请问如何在DELPHI中调试ASP组件?(100分)

  • 主题发起人 主题发起人 BDprogram
  • 开始时间 开始时间
用MediasPageProcedure组件就可以支持ASP方法,不过ASP还得你自己写。
 
Debugging any in-process server such as an Active Server Page is much like
debugging a DLL. You choose a host application that loads the DLL, and debug
as usual. To test and debug an Active Server Page object,
1 Turn on debugging information using the Compiler tab on the Project|Options
dialog box, if necessary. Also, turn on Integrated Debugging in the Tools|Debugger
Options dialog.
2 Choose Run|Parameters, type the name of your Web Server in the Host
Application box, and choose OK.
3 Choose Run|Run.
4 Set breakpoints in the Active Server Page.
5 Use the Web browser to interact with the Active Server Page.
The Active Server Page pauses when the breakpoints are reached.
 
http://delphi.urusoft.com/docs/debug_isapi.htm
 
接受答案了.
 
后退
顶部