ColdFusion是Adobe的服务器端快速应用程序开发平台。 ColdFusion 10于2012年5月发布。
cfspreadhseet - 如何删除/更新单元格中的评论?
我正在使用cfspreadsheet来更新xl文件的内容,也有兴趣为用户添加评论,以便他获得单元格的更多信息。 当我尝试添加
令 nt = 77 且 kt = 13。 CT 将为 10.01。 我想要...
SpreadsheetFormatRows 格式颜色 ColdFusion
我正在使用 ColdFusion 和 SpreadsheetNew、SpreadsheetAddRows、SpreadsheetFormatRows 等函数创建 Excel 文件。根据我读过的文档,它们是一个属性......
如何在 ColdFusion 10 中的 cfhttp 标签中添加 TLS 1.2
我正在使用 ColdFusion 10。如何指定我的连接是 TLS 1.1、TLS 1.0 等。我可以使用 cfhttp 标签吗? 如何使用 ColdFusion 在 cfhttp 标签中添加 TLS 1.2?
在 ColdFusion 10 中使用 CF_SQL_NVARCHAR 的详细信息是什么?
有关更新数据库的 ColdFusion 10 文档中有一节介绍 ColdFusion 10 中与数据库相关的增强功能。该页面提到现在支持 CF_SQL_NVARCHAR...
这是我的代码 函数 page_refresh(){ 文件。</desc> <question vote="42"> <p>这是我的代码</p> <pre><code><html> <head> <script language="javascript" src="JS/jQuery.js"></script> <script> function page_refresh(){ document.getElementById('form2').action="project_file_dir.cfm" document.getElementById('form2').submit(); } </script> </head> <body > <cfoutput> <cfset fileLocation ="\\squeaker\SiSystemsFile\WebServices\WebSites\Perforce\Bhargavi"> <!--- On mac set to /tmp ---> <cfdirectory action = "list" directory = "#fileLocation#" name = "files" filter="*.*"> <form method="post" id="form2"> <cfset f="#files.recordcount#"> <cfset mydatetime=now()> <cfset a=TimeFormat(MyDateTime,'hh:mm:ss tt')> Total File in <b> #fileLocation# </b> Count is <b> #f# </b> #TimeFormat(MyDateTime,'hh:mm tt')# <input type="button" name="Refresh" value="refresh" onclick="page_refresh()"><br> <b>Next Run</b> <cfset b=TimeFormat(DateAdd('n', +5, MyDateTime),'hh:mm:ss tt')> #TimeFormat(DateAdd('n', +5, MyDateTime),'hh:mm tt')# </cfoutput> <cfset a= Minute(Now())> <cfset b=a%5 > <cfoutput>#b#</cfoutput> <!--- <cfinclude template="page_move_2.cfm"> ---> <cfloop condition="b gt 0"> <cfoutput>inside loop</cfoutput> <cfset Sleep(6000)> <cfset b = b - 1 > </cfloop> <cfoutput>hi</cfoutput> </form> </body> </html> </code></pre> <p>我需要每 5 分钟刷新一次页面。这个怎么做 。我使用了 sleep() 函数,但 ui 本身在 sleep() 执行后加载。这是我如何每 5 分钟重新加载一次页面 </p> </question> <answer tick="false" vote="146"> <p>每 300 秒刷新一次文档:</p> <p>使用 HTML Meta 标签,将其添加到页面的 <pre><code><head></code></pre> 标签中:</p> <pre><code><meta http-equiv="refresh" content="300"> </code></pre> <p>使用脚本:</p> <pre><code>setInterval(function() { window.location.reload(); }, 300_000); // in ms </code></pre> </answer> <answer tick="false" vote="20"> <blockquote> <p>页面应该使用元标记自动刷新</p> </blockquote> <pre><code><meta http-equiv="Refresh" content="60"> </code></pre> <blockquote> <p>内容值以秒为单位。一分钟后页面应刷新</p> </blockquote> </answer> <answer tick="false" vote="15"> <p>安装间隔:</p> <pre><code><script type="text/javascript"> setInterval(page_refresh, 5*60000); //NOTE: period is passed in milliseconds </script> </code></pre> </answer> <answer tick="false" vote="4"> <p>自动重新加载您选择的目标。在本例中,目标设置为每 5 分钟 <pre><code>_self</code></pre>。</p> <p><em>300000 毫秒 = 300 秒 = 5 分钟</em></p> <p>如 <em>60000 毫秒 = 60 秒 = 1 分钟</em>.</p> <p><strong>这就是你的做法:</strong></p> <pre><code><script type="text/javascript"> function load() { setTimeout("window.open('http://YourPage.com', '_self');", 300000); } </script> <body onload="load()"> </code></pre> <p><strong>或者如果是同一页面则自行重新加载:</strong></p> <pre><code><script type="text/javascript"> function load() { setTimeout("window.open(self.location, '_self');", 300000); } </script> <body onload="load()"> </code></pre> </answer> </body></html>
我正在尝试显示和处理来自数据库的 26 行记录,并像这样处理这些行: 我正在尝试显示和处理来自数据库的 26 行记录,并像这样处理这些行: <cfquery datasource="mydata" username="myuser" password="mypass" name="mylist" cachedWithin="#createTimeSpan( 0, 0, 5, 0 )#"> SELECT field1,field2 WHERE product = "myproduct" ORDER BY idfield DESC LIMIT 26 </cfquery> <!--- process them ---> <cfoutput query="mylist" maxRows=10> <!--- get the latest 6 record ---> <cfif mylist.CurrentRow lte 6> <!--- do something special with the latest record ---> <cfif mylist.CurrentRow eq 1> do something special <cfoutput> mylist.CurrentRow - #mylist.CurrentRow#<br> </cfoutput> <cfelse> do something else </cfif> <cfif mylist.CurrentRow lte 3> do something </cfif> </cfif> do something </cfoutput> 我期待看到一行这样的输出: mylist.CurrentRow - 1 但是我得到了这个: mylist.CurrentRow - 1 mylist.CurrentRow - 2 mylist.CurrentRow - 3 mylist.CurrentRow - 4 mylist.CurrentRow - 5 mylist.CurrentRow - 6 mylist.CurrentRow - 7 mylist.CurrentRow - 8 mylist.CurrentRow - 9 mylist.CurrentRow - 10 mylist.CurrentRow - 11 mylist.CurrentRow - 12 mylist.CurrentRow - 13 mylist.CurrentRow - 14 mylist.CurrentRow - 15 mylist.CurrentRow - 16 mylist.CurrentRow - 17 mylist.CurrentRow - 18 mylist.CurrentRow - 19 mylist.CurrentRow - 20 mylist.CurrentRow - 21 mylist.CurrentRow - 22 mylist.CurrentRow - 23 mylist.CurrentRow - 24 mylist.CurrentRow - 25 mylist.CurrentRow - 26 这真是令人费解。因为它应该仅在行等于 1 时显示。为什么我会看到所有这些行? 其次,当我将 maxrows 设置为 10 时,为什么我看到 26 行? 希望有人能启发我。提前致谢。 首先,maxrows限制查询变量从数据库返回后的结果数。 如果您只返回一个结果,那么这不会对您的查询性能产生任何影响。 ColdFusion 允许您使用 CFQUERYPARAM 标签传递绑定参数。 例如: <cfquery name="q"> SELECT property1, property2, property3 FROM yourTable WHERE RowID = <cfqueryparam value="#NumericVariable#" cfsqltype="CF_SQL_INTEGER" /> </cfquery> 您可以希望通过提供绑定参数并指定要返回的属性来提高数据库的速度。这可能允许更好的查询缓存和性能改进,具体取决于您使用的数据库引擎。 我会补充说,使用 CFQUERYPARAM 通常比让变量不合格并可能对 SQL 注入攻击开放更安全。 其次,你得到所有结果的原因是因为内部 cfoutput <cfoutput> mylist.CurrentRow - #mylist.CurrentRow#<br> </cfoutput> 我想更好的解决方案是这样查询: <cfquery datasource="ECS360" name ="mylist"> select * from employee.employee ORDER BY employeenumber DESC </cfquery> <cfoutput query="mylist" maxRows="26"> <br/> <!--- get the latest 6 record ---> <cfif #mylist.CurrentRow# lte 6> <!--- do something special with the latest record ---> currnet row #mylist.currentrow# <cfif #mylist.CurrentRow# eq 1> do something special #mylist.CurrentRow# - #mylist.CurrentRow#<br> <cfelse> currnet row #mylist.currentrow# do something else </cfif> <cfif #mylist.CurrentRow# lte 3> do something 123 </cfif> </cfif> </cfoutput>
如何使用 IIS 和 Windows 2008 R2 访问 Shibboleth Header 和 CGI 变量
如何访问 shibboleth 属性以登录到应用程序或基于属性创建用户? 该应用程序在具有 64 位操作系统的 Windows 2008 R2 服务器中的 Coldfusion 10 上运行。
我可以使用cfspreadsheet在已经存在的模板中更新数据而不丢失其中的样式吗?
我可以使用cfspreadsheet在已经存在的模板中更新添加一些数据而不丢失其中的样式吗?我有一个模板,里面有一些列头和表格样式,还有一些颜色。
在一周的示例文件中安装Learn ColdFusion时出错
我正在尝试从ColdFusion网站上完成“一周内学习ColdFusion”教程。我已经设置了mySQL 5.5(在C:/驱动器上)并安装了ColdFusion 10(在E:/驱动器上)。我完成了所有...
在进行CF网络服务调用时,必须创建一个SOAP标头。在CF9中,我们可以使用setHeader()方法。这在我的生产服务器(运行CF9)上有效。但是,我已经升级了...
如何通过JQuery在Coldfusion中循环并在表中显示SQL数据
这里我开发了我的Jquery代码我的jquery代码
java.lang.NoSuchMethodError:coldfusion.runtime.CfJspPage.bindImportPath(Ljava / lang / String;)V
当将Coldfusion版本从8切换到10时,一旦我的Tomcat服务器启动并运行,当我尝试访问任何Coldfusion页面时,我总是收到此错误:java.lang.NoSuchMethodError:coldfusion ....
这个例子是什么,我要怎样做,但ColdFusion的说`程序只能申报一次。 ColdFusion的可以做这样的事情? / ** * @hint把手车辆* /组件车{...
我的web.config看起来是这样的:
我在尝试阻止CSRF攻击实施的csrfGenerateToken和csrfVerifyToken功能。我已经建立了网页标题与这些:一套X-XSS-保护“1;模式=块”总是...
我使用两种不同版本的ColdFusion,ColdFusion 9和ColdFusion 10,两者都有不同的XSLT处理器。 ColdFusion 9使用Apache Xalan而ColdFusion 10使用Saxon ....
我试图弄清楚为coldfusion项目构建和部署实施的最佳流程是什么。我对常规java堆栈更熟悉:一些后端框架(Spring,...
使用包含文件的功能使coldfusion忘记导入。这是正常的吗?
我注意到当我调用之前包含的(cfinclude).cfm文件的函数时,此时发生的所有coldfusion导入(cfimport)都被遗忘了。就像你没有......
ColdFusion中的元素未定义错误。 cfparam不起作用
我遇到问题,我的ColdFusion代码返回“元素AUTHOR在FORM中未定义”。每当我提交表格时我试过用了 设置comment.author但它没有工作......