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

Format integer to string with 5 digits

Try this for a one-liner (well, two with error prevention): function padZeroDigits(sVariable, iLength) if (iLength <= len(sVariable)) then padZeroDigits = sVariable : exit fu …
0
votes

Classic ASP SQL Query Returns Two Columns Out Of Ten…

I don't know if you've fixed this yet, but if not then you should try changing the order you select your columns so that the nText field goes at the end. There is a technical explanation for this …
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

strange Encoding issue

Make sure that you've saved your ASP pages as UTF8 format -- it's not always enough to just have HTML and server-side ASP pointers to UTF8. If you're working on Windows then most Windows ap …
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 …
0
votes

Validate email address form submit

There are a few things that concern me here. You don't explicitly put the form("email") value into session, yet you're trying to use it later in the script. Perhaps you've omitted …