[Gambas-user] Webpage & Request.Post

Hans Lehmann hans at gambas-buch.de
Sat Jul 2 18:17:40 CEST 2022


Hello.

A solution has been found:

<%
   Dim i As Integer
   Dim aFields As New String[]

   aFields = Request.Post.Fields

   Print "METHODE = " & CGI["REQUEST_METHOD"]

   Print "<br>"
   For i = 0 To aFields.Max
     Print "Field " & i & " = " & aFields[i] & " ----->  Field_Value = " 
& Request.Post[aFields[i]] & "<br>"
   Next
%>

With kind regards

Hans


More information about the User mailing list