开发者

ColdFusion Send page as it process it

开发者 https://www.devze.com 2023-01-18 19:26 出处:网络
Is t开发者_如何学运维here a way in ColdFusion (or Railo for that matter) to begin sending the client the page as it processes it?Simple: use the cfflush tag:

Is t开发者_如何学运维here a way in ColdFusion (or Railo for that matter) to begin sending the client the page as it processes it?


Simple: use the cfflush tag:

<cfoutput query="myQuery">
  #myQuery.myData#
  <cfflush>
</cfoutput>

http://www.cfquickdocs.com/cf9/?getDoc=cfflush#cfflush

0

精彩评论

暂无评论...
验证码 换一张
取 消