We've established quite a few times that when it comes to highly paid consultants, there is no correlation between "code quality" and "hourly rate" (cost/appearance ratio is a completely different story). No less, it's still fun to point out that today's snippet (from DZ-Jay) comes from a highly-paid consultant. Apparently, this IF/ELSE/OTHERWISE logic was prevalent throughout much of the code DZ was maintaining ...

If Request.QueryString("source_url") = "" Then
  strRedirect = strRedirect & "&verify=1"
  If Request.QueryString("process") = "1" Then
    strRedirect = strRedirect & "&process=1"
  End If
  Response.Redirect(strRedirect)
Else
  strRedirect = strRedirect & "&verify=1"
  If Request.QueryString("process") = "1" Then
    strRedirect = strRedirect & "&process=1"
  End If
  Response.Redirect(strRedirect)
End If

And since I liked to Burleson above, here's the obligitory Oracle Redneck link.

[Advertisement] BuildMaster allows you to create a self-service release management platform that allows different teams to manage their applications. Explore how!