I know of no way to do that.
That said... you could add a conversion form below it.
<FORM>
<FONT FACE="ARIAL,HELVETICA" SIZE=2><B>Conversions</B> - enter a number in
either field, then click outside the text box<BR>
<FONT FACE="ARIAL,HELVETICA" SIZE=2><B>Temperature</B>
F:<INPUT type="text" name="F" value="" SIZE="15"
onChange="eval('C.value = ' + this.form.C_expr.value)">
<INPUT type="hidden" name="F_expr" value="(Math.round(((212-32)/100 *
C.value + 32)*100))/100 ">
C:<INPUT type="text" name="C" value="" SIZE="15"
onChange="eval('F.value = ' + this.form.F_expr.value)">
<INPUT type="hidden" name="C_expr" value="(Math.round((100/(212-32) *
(F.value - 32))*100))/100 ">
<INPUT type=reset name=reset value=reset>
</FORM>
That is one that I have use in the past works good.
http://www.xmas-i-am.com/test/temp_conversion.htm
John Malone
==================
"John J Smith" <John J
(E-Mail Removed)> wrote in message
news:A2449484-CA11-4A07-B99E-(E-Mail Removed)...
| How do I change the MSN weather display of the automated weblink generated
| in Frontpage to show Centigrade instead of Fahrenheit?
|
| In FrontPage while in Design select Insert - Web Components -MSNBC
| Components -- Weather Forecast. Code automatically generated for chosen
| city only for display in Fahrenheit. Presumable you must edit manually?