French transmètre une information au serveur bureau

sap

Member
Licensed User
Longtime User
Bonjour

Je voudrai transmettre une information a la variable du module report du serveur PC

Merci pour votre aide


Mobile


Dim j As HttpJob
j.Initialize("report", Me)
j.Download(link & "/Report" )


----------------------------------------

PC bureau

Public Sub Handle(req As ServletRequest, resp As ServletResponse)

Dim id As Int

Dim html As String = DBUtils.ExecuteHtml(Main.SQL1, "SELECT * FROM animals WHERE Age = "& id, Null)
resp.ContentType = "text/html"
resp.Write(html)

End Sub
 
Top