show/hide this revision's text 2 Spelling

Since a complete rewrite of a working system can be very dangerous i can only give you a small tip: Set up exuberant tags, ctags, on your project. This way you can jump to the definition of a function and sub easy, which i think helps a lot.

On separating logic from "views". VBScript supports som kind of OO with classes. I tend to write classes which do the logic which I include on the asp-page which acts as a "view". Then i hook together the view with the class like Username: <%= MyAccount.UserName %>. The MyAccoutn MyAccount class can also have methods like: MyAccount.Login() and so on.

Kind of primitive, but at least you can capsulate some code and hide it from the HTML.

show/hide this revision's text 1

Since a complete rewrite of a working system can be very dangerous i can only give you a small tip: Set up exuberant tags, ctags, on your project. This way you can jump to the definition of a function and sub easy, which i think helps a lot.

On separating logic from "views". VBScript supports som kind of OO with classes. I tend to write classes which do the logic which I include on the asp-page which acts as a "view". Then i hook together the view with the class like Username: <%= MyAccount.UserName %>. The MyAccoutn class can also have methods like: MyAccount.Login() and so on.

Kind of primitive, but at least you can capsulate some code and hide it from the HTML.