<%@ LANGUAGE="VBSCRIPT" %> <% Dim strColor Dim strFormat Dim blnCustomColor strColor = Request.QueryString("Color") strFormat = Request.QueryString("Format") blnCustomColor = False Select Case strColor Case "black" Case "FA8508" Case "red" Case "green" Case "blue" Case "brown" Case "FF00D8" Case Else : blnCustomColor = True End Select %> Messages
Message: