![]() ![]() ![]() |
||
|
You can extend the functionality of the ColdFusion MX Administrator by adding links to other web applications and sites. These links appear under the Custom Extensions section in the left navigation pane of the Administrator.
<BR>
, with a separate line for each link. Do not include other HTML code, such as <head>
or <body>
tags.
The target
attribute is required for each link; if you specify target="content"
, the page appears in the main pane of the Administrator. If you specify any other value for the target
attribute, the page appears in a new window.
For example, the following file adds links for Bowdoin College, Universidad Complutense de Madrid, and La Sapienza:
<a href="http://www.bowdoin.edu/" target="content">Bowdoin College</a><br> <a href="http://www.http://www.ucm.es/" target="_blank">Universidad Complutense de Madrid</a><br> <a href="http://www.uniroma1.it/" target="_blank">La Sapienza</a><br>
When you click a link, the page appears.
|
||
![]() ![]() ![]() |