ASP.Net application is not breaking on break point
All of sudden my applic开发者_StackOverflow社区ation is not breaking on the break point. I have tried the solutions given in this link but of no use.
PS: However, it is breaking on the default.aspx
The main things to check are:
1) full solution rebuilt ok?
2) Dev iis/casini server running ok? restart them potential
3) Debug build?
4) UI code calling the required web service method?
5) Attached to the correct process if manually attaching for debug?
6) Close Visual Studio and re-open solution?
Thanks for everyone.
One of my senior developer had solved the issue. The problem was, invalid port number.
- The solution is to Change project property
Use dynamic ports
fromTrue
toFalse
.
Since the port was set as dynamic, it was changing dynamically & the flex application was referring the different port fetching data from there.
Can you try breaking on line 41 instead?
精彩评论