Search Results

7
votes

VBScript/ASP Classic

I had to walk away from my PC when I saw the first answer, and am still distressed that it has been approved by so many people. It's an appalling example of the very worst kind of ASP code, the ki …
2
votes

Why continue writing legacy systems?

@ Mark Brackett: "classic ASP code that no one can maintain or understand. It'll be full of Sql injections, poor coding practices, and unpatched vulnerabilities. Then, a rewrite will finally be ord …
0
votes

VBScript conditional short-circuiting workaround

Two options come to mind: 1) use len() or lenb() to discover if there is any data in the variable: if not lenb(rs("myField"))=0 then... …
2
votes

VBScript conditional short-circuiting workaround

Or perhaps I got the wrong end of the question. Did you mean something like iIf() in VB? This works for me: myField = returnIf(isNothing(rs("myField")), 0, rs("myFiel …
1
vote

Refactoring “include file hell”

Wow. It constantly surprises me how many people have a hate for ASP. In decent hands it's a perfectly capable language for designing web applications. However, I will concede that the way …
0
votes

Is there a way to collapse functions and sub-routines for Classic ASP in Visual Studio 2008?

Primalscript does this. It's mostly very nifty, except it's tending towards bloat which is frustrating. It's also pricey, but the speed it …
1
vote

Dictionary/Client VS Application Variables

I'd absolutely suggest loading the dictionary only the one time, as the Dictionary object is heavy in terms of memory, slow in terms of lookup and the big one: isn't always destroyed in memory when …