blob: ff03c74e68cfcf999a60da26bafd8358b833f720 (
plain)
1
2
3
4
5
6
7
8
|
function handleRequest(request, response) {
response.setHeader("Content-Type", "text/html", false);
response.write(
"<html><body onload='parent.page2Load(\"" +
request.method +
"\")'>file_bug580069_2.sjs</body></html>"
);
}
|