Für dieses Forum muß Javascript im Browser aktiviert werden!
Kommentar: Einfügen von HTML im Kommentar: Link einfügen: <a href="LINKURL" target="_blank">LINKTITEL</a> Bild einfügen: <img src="BILDURL"> Text formatieren: <b>fetter Text</b> <i>kursiver Text</i> <u>unterstrichener Text</u> Kombinationen sind auch möglich z.B.: <b><i>fetter & kursiver Text</i></b> C2 Quellcode formatieren: <code>Quellcode</code> ASM Quellcode formatieren: <asm>Quellcode</asm> (Innerhalb eines Quellcodeabschnitts ist kein html möglich.) Wichtig: Bitte mache Zeilenumbrüche, bevor Du am rechten Rand des Eingabefeldes ankommst ! > Hier noch mal der Code. > Bis zur Meldung "Erfolgreich2" klappt es auch, aber ab hwcom.print("xy"); nicht mehr. > > <code> > thread main > { > byte fifo[512]; > string s; > hwcom.init(); > hwcom.setspeed(8); > hwcom.setbuf(fifo,512); > edip.enableTerminal(0,1); > edip.FF(0); > loop > { > hwcom.flush(); > wait hwcom.rxd(); > hwcom.inputstr(s,0); > edip.println(0,s); > if strx.comp(s,"GET / HTTP/1.1") or strx.comp(s,"GET / HTTP/1.0") > { > edip.println(0,"Erfolgreich1"); > hwcom.flush(); > edip.println(0,"Erfolgreich2"); > hwcom.print("HTTP/1.1 200 OK\n"); > edip.println(0,"Erfolgreich3"); > hwcom.print("Server: C-Control II\n"); > hwcom.print("Content-Length: 90\n"); > hwcom.print("Content-Language: de\n"); > hwcom.print("Content-Type: text/html\n"); > hwcom.print("Connection: close\n\n"); > hwcom.print("<html>\n<body>\n"); > hwcom.print("<b>C-Control II</b> im Web\n"); > hwcom.print("<font color=red>Es geht!!</font>"); > hwcom.print("</body> </html> "); > } > hwcom.put(0); > } > } > > </code>