Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

VBScript CByte Function

❮ Complete VBScript Reference

The CByte function converts an expression to type Byte.

The expression must be a number between 0 and 255

Syntax

CByte(expression)
Parameter Description
expression Required. Any valid expression

Example

Example

<%

response.write(CByte(0) & "<br />")
response.write(CByte(56.8) & "<br />")
response.write(CByte(123.2) & "<br />")
response.write(CByte(255) & "<br />")

%>

The output of the code above will be:

0
57
123
255
Show Example »

❮ Complete VBScript Reference