Skip to main content
Nintex Community Menu Bar

How to use debug K2 pages in Visual Studio.net 2003

  • March 23, 2007
  • 1 reply
  • 2 views

Forum|alt.badge.img+2
Hi

I would like to use Visual Studio 2003 to debug the K2 related aspx pages

How can I attach K2 in Visual Studio 2003 to debug

Please give me the steps and settings needed to be done for this

Thank you

Agathee

1 reply

Forum|alt.badge.img+3
  • Nintex Partner
  • April 24, 2007
K2 Code can be debugged by attaching the Debugger to K2 Studio and putting:

if (System.Diagnostics.Debugger.IsAttached)
{
System.Diagnostics.Debugger.Break();
}

In the event code that you wish to debug.

Please see kb article 65:

http://kb.k2workflow.com/articles/kb000065.aspx

Ashley