Dave DuPlantis

1,379
reputation
76 views

Registered User

name Dave DuPlantis
member for 1 year
seen Nov 11 at 17:53
website
location Indiana
age 42
Software engineer/part-time DBA, mostly using ColdFusion, SQL Server, and VBA, slowly learning Flex. I use Eclipse for development (CFEclipse and Flex Builder).
Oct
30
comment What do you use to edit and develop Classic ASP
I'm actually using Dreamweaver right now on some classic ASP I'm doing, which is somewhat ironic because a) I'm primarily a ColdFusion developer and b) I've never used Dreamweaver before, I prefer Eclipse with the CFEclipse plugin.
Oct
30
comment VB script math function
No, doubles have a decimal part. CDbl() would leave them as 33.3. CInt() would convert them to 33.
Oct
30
comment Replace words from querystring with Regular Expressions
But in VBScript, it should work the same way: the object is still a RegExp, you set the Pattern attribute the same way, and the Replace() method still takes two arguments, the original string and the value to substitute for the matched pattern. (Although in the example above, queryString hasn't yet been set; it would need to be set to the queryString you pulled off the URL farther up in the code.)
Oct
30
comment part of the vbscript code gets trashed with hyphens
but it runs fine in pretty much every browser. I don't think it's a support issue.
Oct
30
answered Classic ASP - It’s totally outdated but is it irrelevant?
Oct
30
comment Classic ASP SQL Injection
I don't think it takes that long to add a bunch of oCmd.Parameters.Append oCmd.CreateParameter(...) statements to your code, and honestly in situations like this I think you are better off focusing on quality rather than speed, particularly if you don't have time to do the work twice.
Oct
30
comment Classic ASP, SQL Server and character encodings
Unicode is more than just UTF-16; UTF-16 is one of many Unicode encodings.
Oct
30
comment Is there any mistake in this Java code?
I think this is a good point, and it may extend to the business world as well. Sometimes you may be asked to do something in a way that is not how you would otherwise do it, perhaps even in a way that seems wrong ... it's good to understand as best you can why you need to do it that way, so then you know how to keep your boss/coworker/instructor pleased and also know how you'd do it if they weren't involved.
Oct
28
answered Anti XSS and Classic ASP.
Oct
28
comment Anti XSS and Classic ASP.
And if you do have to display rich text (legacy system, sigh), writing a cleanup function to use multiple regular expressions is at least a step in the right direction.
Oct
12
answered Standard way to detect mobile browsers in a web application based on the http request
Oct
5
comment Left join and Left outer join in SQL Server
tableA FULL OUTER JOIN tableB will give you three types of records: all records in tableA with no matching record in tableB, all records in tableB with no matching record in tableA, and all records in tableA with a matching record in tableB.
Oct
5
answered Common programming mistakes for ColdFusion programmer to avoid?
Oct
5
answered Flex coldfusion and multiple remote objects
Oct
5
comment Internship in ColdFusion?
I think ColdFusion programmers are outspoken about it by nature because most people who ask us about it preface the question with some form of "I know it's dying, but ...". :) That aside, I agree with your answer no matter what the language. Knowledge of any given language is an asset, particularly in a career where you can't exactly pick one language and run with it until you retire ... and learning new languages will help you learn other new languages ...
Oct
5
comment IE6/7 And ClassName (JS/HTML)
FWIW, davidjrush.com/blog/2009/… mentions that IE occasionally decides not to execute setAttribute( "class", value ) correctly, so it may be necessary to call setAttribute( "className", value ) as well. (So four lines of code here instead of two.)
Oct
1
comment VBScript/ASP Classic
Re 3: sure it is, and there are plenty of resources that provide help (like SO). You may not have used it in years, but it doesn't mean other people aren't still using it, regardless of the wisdom of doing so. (Benefit of some contract work: in and out quickly. Challenge of some contract work: needing to provide a solution within the existing framework.)
Sep
16
awarded  Yearling