Debugging TypeConverter in ASP.NET web application

Posts   
 
    
greenstone
User
Posts: 132
Joined: 20-Jun-2007
# Posted on: 04-Jun-2012 23:08:54   

Hi,

I found the page: http://www.llblgen.com/documentation/3.0/SDK/gui_implementingtypeconverter.htm that tells:
_To debug the ConvertFrom/To methods at runtime in your own application, just build the generated code with a debug build of the type converter vs.net project, be sure the .pdb file of the type converter project is placed in your application's run folder and follow the same procedure: attach to your application from within VS.NET, and set a breakpoint in ConvertTo/From and execute code which should convert data from / to using the type converter. _

I believe this is for an executable project. What steps would I need to do to debug the ConvertFrom/To method in a web-application (e.g. under Visual Studio's web-server or IIS)?

Thanks

Andy

daelmo avatar
daelmo
Support Team
Posts: 8245
Joined: 28-Nov-2005
# Posted on: 05-Jun-2012 07:23:06   

It's the same: reference your typeConverter assembly and be sure the .pdb file is in the output /bin folder. Another easy way if you have the TypeConverter source code: just add the project to your solution and reference that instead of the .dll.

David Elizondo | LLBLGen Support Team