error message regarding dynamic web template

G

Guest

I am trying to delete a part of a web-page but when I hit the delete button,
I get an error message that says "Your change could not be applied because
the code it locked by a Dynamic Web Template.

My link is http://www.cpcf.com/logon/currentbonds.htm

I am trying to delete everything out of the blue boxes just under the
information from the Dynamic Web Template.

When I mouse oveer the Dynamic Web Template, it will not let me select.

I can select what I want to delete and see the text in the code, but I keep
getting the error message.

I don't know how that text got locked by the Dynamic Web Template.

Any suggestions would be appreciated
 
R

Ronx

In that page I can delete anything from the blue boxes directly under
the top link bar. I do not know what you mean by "just under the
information from the Dynamic Web Template." Nor do I understand "When
I mouse oveer the Dynamic Web Template, it will not let me select." -
Why are you opening the DWT when editing a page?

There is some invalid HTML in that page
<!-- #BeginEditable "left" -->
<table border="0" cellpadding="10" style="border-collapse:
collapse" id="table5" width="152">
<tr>
</form>
</tr>
</table>
<!-- #EndEditable -->

The </form> does not have a corresponding opening <form> tag, should
not be placed between <tr> and </tr> tags, and should not be in its
own table. If there were an opening <form> tag, this would lead to
all sorts of problems.
 
S

Stefan B Rusynko

When you use a DWT (in your case template.dwt) the non-editable regions need to be edited in the DWT Template page, and then the
template would be reapplied to all pages that use it

But there is also strange DWT behavior w/i your page
- caused by "overlapping" editable regions, not allowed,
- top "overlaps" main and left probably because your html is invalid
(you start top w/ a div tag and end it w/ a </td> over split table)

Looks like you have malformed html within a non-editable regions of the DWT
As in closing a form tag that is not even opened (and broken by table tags)
<!-- #BeginEditable "left" -->
<table border="0" cellpadding="10" style="border-collapse: collapse" id="table5" width="152">
<tr></form></tr></table>
<!-- #EndEditable -->
(both belong in the head section of your main pages and template - not in the include page)

PS
Move the style sheet link to an editable HEAD section region or your pages that use it
<link rel="stylesheet" type="text/css" href="http://app.quotemedia.com/css/tools.css" />

You also have some very strange malformed html (no such tag as (</href>) as in
<a target="_new" href="https://www.investor-connect.com/....html"></href="http://www.cpcf.com/index.php?action=..."><font
face="Verdana" size="2" color="#FFFFFF">Investor connect login</a>

And many of your pages have broken hyperlink tags (stray </a> or <a href> tags)


--




|I am trying to delete a part of a web-page but when I hit the delete button,
| I get an error message that says "Your change could not be applied because
| the code it locked by a Dynamic Web Template.
|
| My link is http://www.cpcf.com/logon/currentbonds.htm
|
| I am trying to delete everything out of the blue boxes just under the
| information from the Dynamic Web Template.
|
| When I mouse oveer the Dynamic Web Template, it will not let me select.
|
| I can select what I want to delete and see the text in the code, but I keep
| getting the error message.
|
| I don't know how that text got locked by the Dynamic Web Template.
|
| Any suggestions would be appreciated
 
S

Stefan B Rusynko

PS
If your FP & site locks up when opening that page make sure you 1st open FP and open any page in Design View (not code View) before
you open that page

--




| Thanks. I will do some work on your suggestions.
|
| "Stefan B Rusynko" wrote:
|
| > When you use a DWT (in your case template.dwt) the non-editable regions need to be edited in the DWT Template page, and then the
| > template would be reapplied to all pages that use it
| >
| > But there is also strange DWT behavior w/i your page
| > - caused by "overlapping" editable regions, not allowed,
| > - top "overlaps" main and left probably because your html is invalid
| > (you start top w/ a div tag and end it w/ a </td> over split table)
| >
| > Looks like you have malformed html within a non-editable regions of the DWT
| > As in closing a form tag that is not even opened (and broken by table tags)
| > <!-- #BeginEditable "left" -->
| > <table border="0" cellpadding="10" style="border-collapse: collapse" id="table5" width="152">
| > <tr></form></tr></table>
| > <!-- #EndEditable -->
| > (both belong in the head section of your main pages and template - not in the include page)
| >
| > PS
| > Move the style sheet link to an editable HEAD section region or your pages that use it
| > <link rel="stylesheet" type="text/css" href="http://app.quotemedia.com/css/tools.css" />
| >
| > You also have some very strange malformed html (no such tag as (</href>) as in
| > <a target="_new" href="https://www.investor-connect.com/....html"></href="http://www.cpcf.com/index.php?action=..."><font
| > face="Verdana" size="2" color="#FFFFFF">Investor connect login</a>
| >
| > And many of your pages have broken hyperlink tags (stray </a> or <a href> tags)
| >
| >
| > --
| >
| > _____________________________________________
| > 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.net-sites.com/sitebuilder/newsgroups.asp
| > _____________________________________________
| >
| >
| > |I am trying to delete a part of a web-page but when I hit the delete button,
| > | I get an error message that says "Your change could not be applied because
| > | the code it locked by a Dynamic Web Template.
| > |
| > | My link is http://www.cpcf.com/logon/currentbonds.htm
| > |
| > | I am trying to delete everything out of the blue boxes just under the
| > | information from the Dynamic Web Template.
| > |
| > | When I mouse oveer the Dynamic Web Template, it will not let me select.
| > |
| > | I can select what I want to delete and see the text in the code, but I keep
| > | getting the error message.
| > |
| > | I don't know how that text got locked by the Dynamic Web Template.
| > |
| > | Any suggestions would be appreciated
| >
| >
| >
 

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

Top