In Visual Studio .NET, whenever I try to debug my ASP.NET application I’m not able to stop the debugger on my breakpoints. Why?
Your ASP.NET project is not setup for debugging. Open up the project’s properties window and set the “Enable ASP.NET Debugging” option. Open up your web.config file and make sure the Compilation tag’s debug attribute is set to true. Make sure the account you are logged in as and the ASP.NET Worker process is in the local “Debugger Users” group.
Why do I get Error message ‘Unable to Start Debugging’ Error Message When You Send Debug HTTP Request
This problem can occur if there is some error in the web.config file. To resolve this check for the well-formedness of this document. For more details refer PRB: ‘Unable to Start Debugging’ Error Message When You Send Debug HTTP Request
Is it possible to migrate Visual InterDev Design-Time Controls to ASP.NET?
Refer INFO: Migrating Visual InterDev Design-Time Controls to ASP.NET
Why do i get error message ‘Could not load type’ whenever I browse to my ASP.NET web site
Your code-behind files for either your .aspx or the global.aspx page have not been complied. Use Visual Studio .NET’s ‘Build | Build Solution’ menu, or run the command line compiler. For more details refer PRB: ‘Could not load type’ error message when you browse to .aspx page
How do I publish my ASP.NET application to my ISP’s web server?
Your ISP must first create an IIS application and apply the Front Page Server Extensions to it. Then in Visual Studio .NET, select the ‘Project | Copy Project’ menu. Then enter the URL and select the FrontPage web access method. The ‘Copy Project’ feature copies all of the necessary files to your ISP’s machine for your ASP.NET application to run. You can also FTP your files to your ISP web server. But you must know which files to upload. For more details refer PRB: Remote ASP.NET Projects Require IIS on the Client Computer or FrontPage Server Extensions on the Server Computer