kris
Member since Dec 11, 2008
- Profile: /members/2307-kris.htm
- Comments: 2
Recent Blog Comments By kris
-
Paginating Record Sets In ColdFusion With One SQL Server Call
Posted on Oct 11, 2007 at 10:41 AM
Ben Just a though - if your on MSSQL 2005 - can you try this select * from ( SELECT b.id, b.name, b.date_posted, b.time_posted, i.row_number, row_number() over (order by b.name ASC) AS row_number FROM blog_entry b WHERE CHARINDEX( 'ColdFusion', b.name ) > 0 ) tmp wh... read more »
-
Dynamic And Unexpected ColdFusion GetCurrentTemplatePath() Behavior
Posted on Jul 16, 2007 at 2:38 AM
Another interesting behavior i just notice a month a go with thegetTemplatePath() function. If you add a call to this function in the application.cfm and on the url your accessing a cfm file the function return the actual path of the cfm page - but if your accessing a remote method of a cfc file ... read more »