How do I add a line of code to all pages in a web?

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

Guest

Can I add a new line of code to all the pages of my web like the find and
replace function?
 
Yes.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
Sure. First identify a common line in all files (e.g., </head> or
</body> or something that exists in all files where you want to insert
the new line).

Use replace | all files in web (or whatever the option says) -- specify
find in HTML if necessary or not, depending on what you're replacing:

replace:
line #1

with:
line #1
line #2
 
Back
Top