I am having hard time trying to debug a Page Method in an ASPX page.
I was able to set break point in client side JavaScript code but not
in C# code in ASPX page.
How do one can debug Page Methods?
Thanks
If you had modified your code you need to do a complete rebuild.
Basically you need to restart application each time. The problem is that
ASP.NET/Ajax engine make a proxy to that static method and even if you've
modified it asp.net will still call old version and your breakpoint will not
be hit.
George.
> I am having hard time trying to debug a Page Method in an ASPX page.
> I was able to set break point in client side JavaScript code but not
[quoted text clipped - 3 lines]
>
> Thanks
probashi - 23 Aug 2007 21:55 GMT
> If you had modified your code you need to do a complete rebuild.
> Basically you need to restart application each time. The problem is that
[quoted text clipped - 13 lines]
>
> - Show quoted text -
thanks