views:

222

answers:

4

I'm using watermark extenders on textboxes and an exception is being thrown from the AJAX Control Toolkit .dll. It's strange because this just started happening.

I tried debugging from the Ajax solution and Ajax examples (but with my code), but no dice.

Is there a way to step into the Ajax .dll from my solution to see where this is happening?

+3  A: 

Couldn't you just get the source for the Ajax Control Toolkit and include it as a project in your solution and then reference it? You'd then be able to step into the code and if you really needed to, you can just put the precompiled one out when you deploy out.

Pete
+2  A: 

The source code for the AJAX Control Toolkit is available from:

http://www.codeplex.com/AjaxControlToolkit/Release/ProjectReleases.aspx?ReleaseId=16488

Just download and start debugging.

Kev
A: 

You don't need to include the AjaxControlToolkit project. Just open the file you need (in the VS instance where your code that currently breaks is), and set a breakpoint where appropriate.

Esteban Araya
A: 

Maybe a black box approach is more appropriate here. You said that this error just started - what has changed in your environment to start this? You may be headed down a rabbit hole by stepping through the code. Can you deploy to a clean environment and not get the error? Or, does it work in the dev but not the test environment?

David Robbins