JamesBowen
19+ years progress programming and still learning.
I've spent the last few hours trying to figure out how to do a simple URL redirect from the PASOE WebHandler.
In the Classic WebSpeed I would do somthing like this:
What is the equivalent code when using the PASOE WebHandler?
In the Classic WebSpeed I would do somthing like this:
Code:
<SCRIPT LANGUAGE="SpeedScript">
PROCEDURE output-headers:
OUTPUT-HTTP-HEADER("Status","302").
OUTPUT-HTTP-HEADER("Location", AppURL + "/somewebpage.html" ).
OUTPUT-HTTP-HEADER("","").
END PROCEDURE.
</SCRIPT>
What is the equivalent code when using the PASOE WebHandler?