‎2009 Feb 03 8:33 AM
Hi,
I am having a button the web page. How to debug the BSP Application, what is happening after clicking on that particular button.
‎2009 Feb 03 8:42 AM
HI,
U need to use the external break point. To use this u need to check a check box in ur editor utilities.
Put a external Break point after the button presses.
Regards,
Naresh.
‎2009 Feb 03 8:54 AM
Hi,
In your BSP Application-in the respective page
Place the cursor at the line which you want to debug from
The put a session breakpoint (CtrlShiftF9)
Now run your BSP application. It wud stop at the line you want to debug.
Continue using F5
This will help!!
Regards,
Prashant
‎2009 Feb 03 1:46 PM
hello,
BSP is of two types:
if your application is using pages ,then put the break point in oninputprocessing of all the pages ,once u click the button it will go to oninputprocessing of corresponding page.
if your bsp is using views and controllers ,put break point in do_handle_event of the controller class.once the button is clicked it goes to do handle event.
hope you can debug now:)