.NET
cgivb.txt
Associated article: CGI Programming & Visual Basic
Tags: .NET
Published source code accompanying the article by Ofer Laor in which he describes his oCGI2 library, which lets you develop true CGI applications using Visual Basic. Also see CGIVB.ZIP
CGI Programming & Visual Basic
by Ofer Laor
Listing One
Private Function ReadPOST() As String
Static sText As String
If (sText <> "") Then
ReadPOST = sText
Exit Function
End If
Dim lWritten As Long, lReserved As Long
Dim ...


