jose
jose

Reputation: 2543

debugging asp + silverlight app in IIS 5.1

I'm having trouble debugging my asp+silverlight app on IIS 5.1. I tried to follow some tutorials, but with no result. Here it's what I've tried:

Can anyone help?

EDIT: I want to be able to debug server side code (webservices)

Thanks in advance,

Upvotes: 1

Views: 421

Answers (1)

AnthonyWJones
AnthonyWJones

Reputation: 189457

You do not need to fiddle with "Enable ASP server-side script debugging" to debug ASP.NET, that setting relates to the older script based ASP.

You are correct you need to attached to the aspnet_wp in Visual Studio. What is important to remember is that the Visual Studio can debug a range of different "Code Type". I prefer to control this manually. When attaching use the "Select..." button next to the "Attach to:" box and select "Managed (v2.0, v1.1, v1.0)" option.

You should now be able to debugging your ASP.NET and use break points.

Upvotes: 1

Related Questions