No ID editiable region

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
 
S

Stefan B Rusynko

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
 
G

Guest

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top