Viewing editable and locked HTML

Editable content is delimited in HTML using the Dreamweaver comments #BeginEditable and #EndEditable. The HTML for an editable placeholder named Edit-Region would look like this:

<!-- #BeginEditable "Edit-Region" -->
   {Editable-Region}
<!-- #EndEditable -->
The HTML for an editable table named Edit-Table would look like this:
<!-- #BeginEditable "Edit-Table" -->
<table width="77%" border="1">
  <tr> 
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
</table>
<!-- #EndEditable -->

For templates, editable regions are highlighted in the HTML window. However, you can make changes to both editable and locked HTML source code.

For documents using templates, locked regions are highlighted in the HTML window. You can only make changes to the editable (non-highlighted) HTML source code.