DegC Function:

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

Syntax:
general = DegC(FahrenheitTemperature)
Example Usage:
Use DegC to translate 100 degrees Fahrenheit into it's Celsius equivalent.
<% = DegC(100) %>
ASP Source Code:
<%
Private Function DegC(byVal fahrenheit)
	DegC = (fahrenheit - 32) / 1.8
	DegC = Round( DegC, 1 )
End Function
%>