Reputation: 2651
Which version of the Express edition of Visual Studio can I use to work with Windows Forms programs written in JScript .NET? I did a quick search and I can see versions for Visual Basic, Visual C# and Visual C++ ... but not JScript.
Up until now I've just been editing in Notepad and compiling using jsc.exe, but debugging is starting to become a real pain. I'd like to be able to step through my code and locate the exact location of a bug.
Thanks.
Upvotes: 3
Views: 1185
Reputation: 244843
You can write JScript code in any version of Visual Studio you want. For the Express editions, Visual Web Developer Express is a good choice.
The catch is that you cannot compile JScript code in the Visual Studio IDE. You have to perform this step either from the command line or via the ASP.NET page.
See MSDN for more details: Writing, Compiling, and Debugging JScript Code
Upvotes: 4