Skip to main content
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
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

Reply