I´ve got in front of my eyes a project build by another guy and it is develo开发者_如何学JAVAped in ASP (not ASP.NET) so I opened it with Visual Web Developer 2010 and I can edit but it isn´t posible to debug it step by step, it´s always looking for aspx pages...
do you know any other editor for asp? thanks!
I use Visual Studio 2010 to debug ASP pages
First configure IIS as follows ...
- Go to IIS Manager
- Switch to Features View
- Double-click ASP (under IIS heading)
- Open up the Debugging Properties section
- Set Enable Server-side Debugging to True
To debug your ASP page ...
- Run your website without debugging it
- Wait for your web browser appears
- In VS select Attach to Process... from the Debug menu
- Tick the Show processes in all session box (below the list of Available Processes)
- Find the w3wp.exe process (it's the one with Script, T-SQL, Managed, x86 in the Type column)
- Click the Attach button
- Set your breakpoint
- ..................................reproduce the problem
Now, this is in full Visual Studio, but it may work in the express edition.
精彩评论