Public writeByte() As Byte = "<br><input type=\ @button\ @ name=\ @b1\@ value=\ @Turn LED ON\@ onclick=\ @location.href='/ON'\>"
For i = 0 To writeByte.Length - 1
If writeByte(i) = 64 Then
writeByte(i) = 34
End If
Next
Log(writeByte)
Astream.write("<br><br>")
Astream.Write(writeByte)
...thanks Erel, did not find that. Tried joinstring stringarray... Where to put double quotes? Directly in astream.write? Maybe more complicated with HTML code...