Another way to do it is to use an external include file. For example, if
it's JavaScript you could put all the script in an external .js file (ex:
myscripts.js) and then include that on each page. You'd put that before the
</head> tag. Ex:
<script language="javascript" src="myscripts.js"></script>
If it's ASP code or server-side functions you could put those in an external
file as well and include them like this:
<!-- #include virtual="mycode.asp" -->
if it's CSS then you would put that in an external .css file and in the
<head> section put:
<link rel="stylesheet" type="text/css" href="mystyles.css"/>
--
David Berry
Microsoft MVP - FrontPage
FrontPage Support:
http://www.frontpagemvps.com/
-----------------------------------
To assist you in getting the best answers for FrontPage support see:
http://www.frontpagemvps.com/FrontPa...3/Default.aspx
-----------------------------------
"Sitara Lal" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Great ideas, Stefan - thanks!
>
> "Stefan B Rusynko" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> You can Either us an Include page (say at the bottom of the page before
>> the </body> tag)
>> or if the script is short use Search & Replace
>> Search for say: </body>
>> and replace with: script text here</body>
>>
>> --
>
>