This is explanation requested in the comments. There are at least two url variables available, bSortable_1 and iSortCol_1. Both the php code and Pritesh's answer have this sort of structure.
<cfif somethingabout_bSortable_1.somethingabout_iSortCol_1>
do something
By treating the variables separately, my structure would resemble this:
<cfif somethingabout_bSortable_1 and (or or) somethingabout_iSortCol_1>
do something
Going to the StructkeyExists function, but with static values, it would be this
<cfif StructKeyExists(url, "bSortable_1") and StructKeyExists(url, "iSortCol_1")>
do something
For dynamic values, I don't know what would work so I would have to find out. Having said that, the first thing I'd try is:
<cfloop from = "1" to = SomeMaximum index = "i">
<cfif StructKeyExists(url, "bSortable_#i#") and StructKeyExists(url, "iSortCol_#i#")>
do something
closing tags