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
Page 1 / 1
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
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
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.