cfsetting
From CEW
[edit] enablecfoutputonly="reset"
The enablecfouptutonly attribute specifies whether output outside of <cfoutput>..</cfoutput> should be sent to the client.
By default, this attribute is a stacked boolean - that is, if you turn it on twice, you must turn it off twice, otherwise the setting remains active.
Setting the value to reset clears the stack and turns off the setting.
For example, this:
<cfsetting enablecfoutputonly="true"/>
<cfsetting enablecfoutputonly="true"/>
<cfsetting enablecfoutputonly="true"/>
<cfsetting enablecfoutputonly="reset"/>
Is equivalent to:
<cfsetting enablecfoutputonly="true"/>
<cfsetting enablecfoutputonly="true"/>
<cfsetting enablecfoutputonly="true"/>
<cfsetting enablecfoutputonly="false"/>
<cfsetting enablecfoutputonly="false"/>
<cfsetting enablecfoutputonly="false"/>
[edit] requesttimeout
The requesttimeout attribute allows you to override the default request timeout setting in the admin settings and make the current request timeout sooner or later than it might otherwise.
Only the .NET edition of BlueDragon supports request timeout, and this will throw a .NET error rather than a BlueDragon one.



