ASP/VBScript RGB() Returns an Integer value representing an RGB color value from a set of red, green and blue color components.
ShotDev Focus:
- Using Asp and RGB() function.
Example
asp_rgb.asp
<% Option Explicit %> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <% Response.write RGB(100,200,300) %> </body> </html>
Create a asp file and save to path root-path/myasp/