coldfusion-8

Export to Excel not displaying numbers correctly

a 夏天 提交于 2019-11-27 08:22:51
问题 I'm having a hard time getting account numbers to display correctly when exporting data from database to an Excel spreadsheet. The account number for one company, shows up correctly. However, others don't. Users have to double click in the cell to see the whole account number. I have Googled this issue and none of the solutions that I've tried worked. <cfsetting enablecfoutputonly="Yes"> <cfsavecontent variable="sTest"> <cfoutput> <table> <tr><th align="center">ATTUID</th> <th>Company Name<

Picking a ColdFusion MVC Framework [closed]

喜你入骨 提交于 2019-11-27 03:58:33
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I am taking over a lot of the ColdFusion stuff that is lingering at our shop and they are insistent it stay on ColdFusion and that new projects in this area MUST be done in CF - basically this part is non-negotiable. I am not very experienced in CF (haven't touched it since 2003) so most of my development has

Picking a ColdFusion MVC Framework [closed]

假装没事ソ 提交于 2019-11-27 03:49:30
I am taking over a lot of the ColdFusion stuff that is lingering at our shop and they are insistent it stay on ColdFusion and that new projects in this area MUST be done in CF - basically this part is non-negotiable. I am not very experienced in CF (haven't touched it since 2003) so most of my development has been in .Net, MVC, C#, Linq-to-SQL in the past 4-5 years. I was doing some looking around for a MVC framework that I could relate my Asp.Net MVC experience to and hopefully an integrated ORM (I am stuck using CF 8 at least for a while). I have found a few like Model-and-glue, Mach II and

How do you use java files in Coldfusion

允我心安 提交于 2019-11-26 23:15:01
问题 I need to import a java file into a coldfusion 8 page e.g. : public class Hello { public String testJava() { return "Hello Java!!"; } } In Coldfusion I have the following code: <cfscript> helloWorld = CreateObject("java","Hello"); helloTest = helloWorld.testJava(); </cfscript> I then receive the error Object Instantiation Exception. Class not found: Hello In my Coldfusion server Java Virtual Machine Path is set to 'C:/ColdFusion8/runtime/jre', So this is where I have put my java file, is this