No ID editiable region

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have no idea how I got myself here, so.....

I have set up editable regions in a DWT and, for my own sanity, have put
some default text in that I replace when I code the actual pages. I had two
of them inside a single <div> and decided I needed to split the <div> into
two <div>s for formatting control. I decided to do the work directly in the
DWT and made the necessary changes.

However, now when I view the page in Design, along with the two original
editable regions I now get one (overlayed) with the second one with the
editable region title of "NoID". When I go into manage the editable regions
it doesn't show up on the list.

How do I get rid of the NoID editable region?

Thanks

Tom
 
When you created the 2nd div
if you copied it you duplicated the DWT editable region name,
or failed to make both divs w/i the same region
Look in code view

An editable region (each w/ a unique name) will look someting like
<!-- #BeginEditable "content" -->
<div> ..</div>
<!-- #EndEditable -->

If you want them both in the same editable region it would be
<!-- #BeginEditable "content" -->
<div> ..</div>
<div> ..</div>
<!-- #EndEditable -->

If you want them as 2 different editable regions
<!-- #BeginEditable "content1" -->
<div> ..</div>
<!-- #EndEditable -->
<!-- #BeginEditable "content2" -->
<div> ..</div>
<!-- #EndEditable -->

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


|I have no idea how I got myself here, so.....
|
| I have set up editable regions in a DWT and, for my own sanity, have put
| some default text in that I replace when I code the actual pages. I had two
| of them inside a single <div> and decided I needed to split the <div> into
| two <div>s for formatting control. I decided to do the work directly in the
| DWT and made the necessary changes.
|
| However, now when I view the page in Design, along with the two original
| editable regions I now get one (overlayed) with the second one with the
| editable region title of "NoID". When I go into manage the editable regions
| it doesn't show up on the list.
|
| How do I get rid of the NoID editable region?
|
| Thanks
|
| Tom
 
Stefan B Rusynko said:
When you created the 2nd div
if you copied it you duplicated the DWT editable region name,
or failed to make both divs w/i the same region
Look in code view

An editable region (each w/ a unique name) will look someting like
<!-- #BeginEditable "content" -->
<div> ..</div>
<!-- #EndEditable -->

If you want them both in the same editable region it would be
<!-- #BeginEditable "content" -->
<div> ..</div>
<div> ..</div>
<!-- #EndEditable -->

If you want them as 2 different editable regions
<!-- #BeginEditable "content1" -->
<div> ..</div>
<!-- #EndEditable -->
<!-- #BeginEditable "content2" -->
<div> ..</div>
<!-- #EndEditable -->

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


|I have no idea how I got myself here, so.....
|
| I have set up editable regions in a DWT and, for my own sanity, have put
| some default text in that I replace when I code the actual pages. I had two
| of them inside a single <div> and decided I needed to split the <div> into
| two <div>s for formatting control. I decided to do the work directly in the
| DWT and made the necessary changes.
|
| However, now when I view the page in Design, along with the two original
| editable regions I now get one (overlayed) with the second one with the
| editable region title of "NoID". When I go into manage the editable regions
| it doesn't show up on the list.
|
| How do I get rid of the NoID editable region?
|
| Thanks
|
| Tom


That appears to be the problem. A good caution when doing copy/paste to split up editable regions.

Thanks
 
Back
Top