user212098
user212098

Reputation: 131

A good IDE for classic ASP?

I'm using Dreamweaver, but it doesn't give me classes, functions, subs names when I am starting to write..

Are there any good alternatives?

Upvotes: 12

Views: 29557

Answers (9)

Talley Ouro
Talley Ouro

Reputation: 319

I advise you to use Microsoft WebMatrix(syntax highlighting,internal web server source control like git,TFS,etc...). You can download it from my github link below.

https://github.com/talley/softwares/blob/main/WebMatrix_x86_en-US.msi

Upvotes: 0

PaulScott
PaulScott

Reputation: 117

Allaire's HomeSite 4.5 is what I have been using for about 20-years. I've tried NotePad++ and it works pretty good also, but is a bit more difficult to use. I also tried several versions of Visual "XXX" (Visual Studio, Visual Code, etc.) and all of them are monster programs, and load very slow, even on a very fast R610 server. Unfortunately, HomeSite is hard to find, as it is now owned by Adobe, and they have pretty much killed it. If you do find HomeSite, don't use the 5.0 or 5.5 versions, as they crash intermittently. HomeSite v4.5 is very stable.

Upvotes: 1

dotancohen
dotancohen

Reputation: 31471

In the seven years since this question has been asked, the IDE landscape has changed quite a bit. Reading Classic ASP code on Linux or any other platform is now possible with Visual Studio Code. Visual Studio Code is not Visual Studio, but a completely different editor based on Electron.

enter image description here

Yes, Microsoft is now shipping code written in NodeJS that runs naively on Linux!

Upvotes: 16

Jigas
Jigas

Reputation: 1

Primal script 2012. Awsome for classic asp

Upvotes: 0

user213186
user213186

Reputation: 99

As much as it pains me to say so, visual studio.net 2003 works quite well as an IDE with asp classic pages. Plus, if you use Whole Tomatoe's Visual Assist addin with it, they actually make classic asp fun to code in. Seriously. Totally tolerable AND debuggable. And if you toss in AspUnit for classic, you can easily run/maintain unit tests right alongside all your pages.

It works for classic Asp just like the big boys use for their .Net coding minus a few of the .net niceties, of course

With vs.net 2003 you can actually step though code one line at a time. you get breakpoints. You also get all locals variables shown while stepping and a working call stack which is nice if you have nested objects/procs/includes.

If you get the 'Visual Assist' addin-- and you use option explicit-- you also get a very workable version of Intellisense for all your vbscript objects and procedures. Pretty amazing to get Intellisense in a scripting language however they manage to pull that off.

And for testing your classic code AspUnit is perfectly functional "red/green" visual component.

It took me forever to finally get it all set up together and running proper but it was well worth it for a buttload of legacy code I inherited. Here's some links to all the stuff ref'ed above:

Visual Studio 2003 (not cheap, but stepping though script code-- priceless):

Whole Tomato Visual Assist:
- http://www.wholetomato.com/

AspUnit:
- http://aspunit.sourceforge.net/

Upvotes: 7

Pal R
Pal R

Reputation: 534

Use Sublime with SublimeCodeIntel package

Upvotes: 0

Andy Davies
Andy Davies

Reputation: 1446

I heavily use Expression Web 4 (affordably priced) and recently the new free WebMatrix, both from Microsoft. Both come with intellisense for ASP classic and current languages like .Net/Razor.

Upvotes: 4

Alex Park
Alex Park

Reputation: 157

I think that VS2005 is best the way for classic ASP. VS2005 supports debugging and code highlighting. And Whole Tomato's Visual Assist X is necessary add-in. It improves code-highlighting, intellisense for VS2005 and it'll accelerate your works. And you can see VA view like class outline view.

Upvotes: 2

Wayne Molina
Wayne Molina

Reputation: 19586

There isn't anything, since Classic ASP is a scripting language. Visual Studio has very rudimentary Intellisense but only for very basic features and I've found it doesn't help. Your best bet is to stick with Dreamweaver or just use a lightweight text editor with syntax highlighting. I recommend Notepad++

Upvotes: 17

Related Questions