wrighterb
Member since Dec 11, 2008
- Profile: /members/2366-wrighterb.htm
- URL: http://www.wrighter.com
- Comments: 8
Recent Blog Comments By wrighterb
-
Quick Thought On OOP Data Validation And Why Redundancy Is OK
Posted on Apr 3, 2009 at 10:07 PM
Ending a session and starting a new My end consumer is already logged in. Session.UserID Placed and order, now they are done. <cfquery datasource="Generic" name="PurchaseOrders"> SELECT * FROM Orders WHERE WeborderID = '#url.WebOrderID#' </cfquery> <CFSET getitbaby = Session.UserI... read more »
-
Ask Ben: Ending ColdFusion Session When User Closes Browser
Posted on Oct 17, 2008 at 10:16 AM
@Ben So just to make things clear, there is no way to end the session when the browser closes and make the onSessionEnd() take place?... read more »
-
Ask Ben: Optimizing Tables For Printing
Posted on Sep 18, 2008 at 1:03 PM
Oh and using cfdocument... read more »
-
Ask Ben: Optimizing Tables For Printing
Posted on Sep 18, 2008 at 1:02 PM
I ended up going back to font= and basic table tags to get pages to display across browser type and print with header and footer. Works well enough.... read more »
-
Ask Ben: Optimizing Tables For Printing
Posted on Sep 12, 2008 at 4:51 PM
Ya the PDF version will do that to ya... read more »
-
Ask Ben: Optimizing Tables For Printing
Posted on Sep 12, 2008 at 2:20 PM
How would you put this into a PDF with the styles working?... read more »
-
Ask Ben: Pulling SQL Records Based On A List Of IDs
Posted on Sep 26, 2007 at 12:25 PM
Thanks Ben this was what I finally did to make it work, my solution wasnt to complex. <cfoutput> <table cellpadding="0" cellspacing="0" width="800" align="center"> <cfloop list="#theList#" index="i"> <cfquery datasource="cvccvc" name="theOne"> SELECT * FROM Thes Where Wheel... read more »
-
ColdFusion Optimizing Case Study: Writing Orders To A CSV File
Posted on May 4, 2007 at 11:55 AM
Thanks Ben, This runs ten times faster....... read more »