I'm trying to debug a J# browser control using Visual J# Express Edition. My control is embedded in an html page. Since the output of my project is a class library I cannot start it directly. If I try, I get the following message:
A project with an Output Type of Class Library cannot be started directly. In order to debug this project, add an executable project to this solution which references the library project. Set the executable project as the startup project.
I've tried creating a new Console Application project and adding it to my solution. I set it as the startup project and make it reference my class library. But what now I've tried using
System.Diagnostics.Process.Start("iexplore mywebpage.htm");
and although this launches the html page, the debugger does not break.
All I really want to do is launch an html page and debug from there but I cannot find a way to do this.
Any ideas

Express Debugging of J# Browser Controls
Mark Michaelis
The only way is to debug “iexplore.exe” but Express SKU don’t support mixed mode debugging; also there is no option to attach the debugger to a process in Express SKU.
With VS Team System , you can attach the debugger to “iexplore.exe”, and thereby with Mixed mode debugging, you could break into the user code.< xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />