Howdy com,
for a webdesign which has to be based on pure HTML I need to feed a certain table-cell with text.
This text shall be displayed on several pages and should easily be edited by only one file instead of editing several html-pages.
So I invented the following solution using "object":
Unfortunately IE takes this for active-elemts and therefor an explicit permission must be given to it in order to see the field.
Isn't there a more elegant way to solve this problem? As mentioned above it must be pure HTML as the hosting server doesn't accept anything else....
Thx in advance!
for a webdesign which has to be based on pure HTML I need to feed a certain table-cell with text.
This text shall be displayed on several pages and should easily be edited by only one file instead of editing several html-pages.
So I invented the following solution using "object":
| Code: |
|
<TABLE> <TBODY><TR> <TD COLSPAN=3 valign=top background="images/index_03.gif" WIDTH=268 HEIGHT=84 style="BACKGROUND-REPEAT: no-repeat"> <object data="news.html" type="text/html" width="268" height="84"></object> </TD></TR> </TBODY> </TABLE> |
Unfortunately IE takes this for active-elemts and therefor an explicit permission must be given to it in order to see the field.
Isn't there a more elegant way to solve this problem? As mentioned above it must be pure HTML as the hosting server doesn't accept anything else....
Thx in advance!
