![]() |
||
|
You can allow users to edit static content within dynamic pages and protect only the dynamic portions of the page.
Contribute users cannot edit source code, nor can they edit anything outside of the <body>
and <title>
tags of a page. This protects initialization scripts and include files from being edited. To protect dynamic elements in the body of your page, consider the following precautions:
CFLOOP
in ColdFusion, or repeating ASP), you can make that page into a template, ensure that those regions of the template are locked, and create an instance of the template. Contribute users will only be able to edit within the editable regions specified. You may not want users to create new pages from these templates, or copy those pages. To learn how to restrict users from creating new pages from your templates, or copying those pages, see Setting permissions for new web pages.
SCRIPT
tags, server-side includes, ASP, JSP, ColdFusion, and PHP. This option also protects any tag with a nontext character in the tag name, such as ASP:MyTag
. However, Contribute may not be able to recognize and protect custom tags, such as myCustomTag
, and the data elements between ColdFusion CFOUTPUT
tags such as #...#
. Users are able to edit plain HTML enclosed in conditional tags (such as the content between CFIF
and CFELSE,
and other HTML container tags such as CFOUTPUT
).
For more information, see Setting page editing and paragraph permissions.
b
, font
, span,
and so on.). No other tags can be selected or deleted. However, HTML content between tags may be editable.For more information, see Setting page editing and paragraph permissions.
|
||
![]() |