I have a stateful BSP Application that is called with some URL parameters.
https://bla.com/alias/default.htm?param1=value1
On the default.htm, i call
request->get_form_field( 'param1' )
to read value1. This value is read in every request.
My question: Can I overwrite param1 in the event handler of default.htm so that param1 has a different value in the following requests?