i've created a dreamweaver template wich use microsoft user controls i applyed
it to all my pages and everything goes fantastic. it looks like: <%@ Page
Language='c#' ContentType='text/html' ResponseEncoding='iso-8859-1'
AutoEventWireup='false' %> <%@ Register TagPrefix='uc1' TagName='Header'
Src='../../../UserControls/Header.ascx' %> <%@ Register TagPrefix='uc1'
TagName='UCMenu' Src='../../../UserControls/UCMenu.ascx' %> <!DOCTYPE HTML
PUBLIC '-//W3C//DTD HTML 4.0 Transitional//EN' > <HTML> <HEAD> <!--
TemplateBeginEditable name='doctitle' --> <title>Prueba</title> <!--
TemplateEndEditable --> Everything was ok until i have to add a new user
control. i put the uc in the layout, i put the reference in the first lines of
the page but when i apply the changes, the pages that where created before with
the template dont get the reference: <%@ Register TagPrefix='uc1'
TagName='Header' Src='../../../UserControls/MyNewUC.ascx' %> BUT if a create a
new page and apply template, again everything is ok. Any idea, any help? thanx
in advance