-
Notifications
You must be signed in to change notification settings - Fork 81
New tags in Railo
Below you will find a list of tags that are only available in Railo and are not part of the CFML standard.
The tag cfadmin
is used in the web and server administrator to manage and edit Railo Server settings. Further [http://wiki.getrailo.org/wiki/3-1-Tags:CFAdmin documentation] is available.
This works exactly the same way as the cfpop
tag. It has the same attributes.
The Internet Message Access Protocol or IMAP is one of two of the most prevalent Internet standard protocols for e-mail retrieval, the other being POP3. Virtually all modern e-mail clients and servers support both protocols as a means of transferring e-mail messages from a server, such as those used by Gmail, to a client, such as Mozilla Thunderbird and Microsoft Outlook.
Many implementations of webmail use IMAP to retrieve e-mail messages from a server and display them within a web browser, making the use of this protocol transparent to the user (read more on Wikipedia),
Analog to the method getPageContext().forward()
(Java-Doc PageContext). Leads the request to a different page. This tag acts like the tag cflocation
except that the relocation is done directly on the server.
The tag cffinally
inside a cftry/cfcatch block will always be executed, no matter whether an error occurred or not. It is used in the following way:
<cftry>
code that might produce an error
<cfcatch>
catch a certain error
</cfcatch>
<cffinally>
... code that needs to be executed always
</cffinally>
</cftry>
It can be used in order to close a file, for example.
The tag cfvideoplayer
allows you to display a video in Flash (FLV) format. It includes the complete functionality to display the player with the necessary HTML code. Read more on the multimedia functionality.
The tag cfvideoplayerparam
is needed when you want to display a playlist in your Flash player. Read more on the multimedia functionality.
Simplification of the tag <cfloop condition="count">
, analog to the CFScript while
loop.
<cfset count=0>
<cfwhile count LT 10>
<cfset count=count+1>
<cfoutput>#count#</cfoutput>
</cfwhile>
- Getting to know Railo Server
- Railo Server features & specifications
- Getting started with Railo Server
- Installation & configuration
- Railo Server Versions
- Developing with Railo Server
- Deploying Railo Server apps
- Managing Railo Server apps
- Railo Server Extensions
- Useful resources & further reading
- Developing & debugging Railo Server
- FAQs