I have a state machine workflow which contains a number of states. Each state has an event driven activity that handles an external event. When that event fires, I'd like to either redirect the request to a different Controller Action
or a View
.
What is the best way to redirect to a different view or controller action when an event is fired in state machine workflow?