How Can We Help?
Sometimes there is a need to trigger to a different URL after a trigger has been processed.
Answer
This is achievable using the NavigateTo feature available on the trigger control.
Replace the http://www.google.com in the following example with the appropriate URL required.
Example in VBScript:
fcTrigger = "[NavigateTo:http://www.google.com]Activity1,...,ActivityN"
Example in Managed Code c#:
return "[NavigateTo:http://www.google.com]Activity1,...,ActivityN";
It will redirect immediately after the trigger is successfully processed.
Comments are closed.