We learned how to ROUND numbers in Math during school. In Classic ASP, we do the same thing in code rather than on paper. When we had a value less than .5, say, .4, the value left would stay the same. If it were .5 or higher, the value would increase by a number.
In the below code sample, the value of 125325.8 will be rounded to 125326
CFFCS | CarrzSynEdit: | ASP/VBScript
<%
Start = "125325.8"
getStart = Round(Start,0)
response.Write getStart
%>

If we changed the value right of the decimal to a value lower than 5, the value to the left would remain the same.
Start = "125325.4" = 125325


We can also get the value from an input field.
CFFCS | CarrzSynEdit: | ASP/VBScript
<input type="test" name="Start" value="125325.8">


Then we run that value through the following code to get its whole number value.
CFFCS | CarrzSynEdit: | ASP/VBScript

getStart = Round(request.form("Start"),0)
' Then write its value out to the page.

<%=getStart%>


The output will be 125326