Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Firefox/docshell/test/browser/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 417 B image not shown  

Quelle  file_basic_multipart.sjs   Sprache: unbekannt

 
"use strict";

function handleRequest(request, response) {
  response.setHeader(
    "Content-Type",
    "multipart/x-mixed-replace;boundary=BOUNDARY",
    false
  );
  response.setStatusLine(request.httpVersion, 200, "OK");

  response.write(`--BOUNDARY
Content-Type: text/html

<h1>First</h1>
Will be replaced
--BOUNDARY
Content-Type: text/html

<h1>Second</h1>
This will stick around
--BOUNDARY
--BOUNDARY--
`);
}

[ Dauer der Verarbeitung: 0.23 Sekunden  (vorverarbeitet)  ]