Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

What happend to Debug Symbols in 2.0

Status
Not open for further replies.

RTomes

Programmer
Joined
Apr 19, 2005
Messages
357
Location
US
When I deploy a web applicaion to a 2003 server my debug symbols are gone.
The debug information excludes the line numbers (the most important part).

I have <compilation debug="true" > in the web config.

I even tested it using a special error page.
Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs)
' Code that runs when an unhandled error occurs
Session("App_Error") = Server.GetLastError.ToString
Server.Transfer("error.aspx")
End Sub

Anyone else run into this or know how to correct it?
Thanks,
RTomes
 
Found the answer.
You have to download an add on for VS Studio 2005 (if you are using VS Studio 2005 you can also do this by command line) to pre compile web application code with more options.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top