DegF Function:

The DegF function returns the Fahrenheit equivalent of a Celcius temperature. Use the DegC Function to convert Fahrenheit to Celcius.

Syntax:
general = DegF(CelciusTemperature)
Example Usage:
Use DegF to translate 37.8 degrees Celcius into it's Fahrenheit equivalent.
<% = DegF(37.8) %>
ASP Source Code:
<%
Private Function DegF(byVal celcius)
	DegF = celcius * 1.8 + 32
	DegF = Round( DegF, 1 )
End Function
%>