The businnes logic information is not available at module_init.
This is the scenario:
We have two modules on the page - one selector let us call it M1 and one viewer, call it M2
The user selects something in M1, triggering a postback. M1_init and M2_Init are called - but the new selection is still not available.
Now M1 and M2 retrireves the Action collection, and finally M1_Load is called updating the Session, making the new values available to M2.
Question: Is the selected value property of a dropdownlist available at M1_Init? Because then we could update the session in Init...