boilers222
boilers222

Reputation: 1989

How do I debug an asp.net program without code behind?

I inherited a web site that I know little about. I've worked with asp.net/C# websites, but this seems to be something different. There is no code behind for me to put a break point and step through it. Also several refernces in the program can't be found. My general question is: How do I debug this program in Visual Studio?

Specifc questions related to this sample code:

Upvotes: 0

Views: 1107

Answers (1)

Fenton
Fenton

Reputation: 250862

If you have inherited an application without source code, you have a tough challenge ahead of you.

You could use dotpeek or reflector to decompile the DLLs in order to recreate the source code, but this will be an onerous task.

My first point of call would be to find out if the source code was available anywhere.

Upvotes: 5

Related Questions