Re: Date Stamp Issues (Dreamweaver 8) -
01-18-2007
, 10:48 AM
In regard to the date stamp that was inserting itself seemingly randomly, I
spent a great deal of time going through my developers' code, trying to clean
up invalid code in hopes of discovering what was triggering the unwanted date
stamp. The last bit of cleaning up I did seems to have done the trick--we have
not had any unwanted date stamp insertions in over 30 days.
The offending code appears, in this case, to be code written by Dreamweaver
during the creation of rollover images used as buttons. My novice developers
would create a rollover image (button) then decide they wanted to change it. As
they are not experienced enough nor knowledgeable enough to work comfortably in
code view, they work in the design view. Thus they were attempting to delete
the rollover image in the design view. It would appear to them that the
rollover button had been removed but, in fact, some code would remain. They
would recreate the rollover image (button), sometimes repeating this
creation/removal cyle several time, until they were satisfied. (See the code
attached: this is the code that, in the design view, produced a single working
rollover image (button) despite having 5 different MouseOver/MouseOut events.)
The button would function so they were left to assume that all was fine. By
removing all of the unnecessary code remnants, it appears that we have
eliminated the cause of the unwanted date stamp insertions.
<tr>
<td><a href="#" onMouseOut="MM_swapImgRestore()"
onMouseOver="MM_swapImage('Field Trip
Button','','../images/field_trip_button_2.gif',1)"></a><a
href="../3_chemical_reactions/chemical_changes1a.html"
onMouseOut="MM_swapImgRestore()"
onMouseOver="MM_swapImage('chemical_changes','','. ./images/chemical_change_butto
n.gif',1)"></a><a href="../1_ecosystems/field_trip_index_old.html"
onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Field Trip
Button','','../images/field_trip_button_2.gif',1)"></a><a
href="../3_chemical_reactions/intro_demo.html" onMouseOut="MM_swapImgRestore()"
onMouseOver="MM_swapImage('demonstration_button',' ','../images/chemical_change_b
utton.gif',1)"><img src="../images/chemical_demos_button.gif"
alt="Demonstration Introduction Button" name="demonstration_button" width="148"
height="30" border="0"></a><a href="../1_ecosystems/field_trip_index_old.html"
onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Field Trip
Button','','../images/field_trip_button_2.gif',1)"></a></td>
</tr>
<tr> |