Background: We are building a event registration site and we need to redirect to a custom page with a querystring parameter after the form has been completed.
This is the user workflow 1. User are viewing a event /Events/MyEvent.aspx 2. User will register via alt template /Events/MyEvent/Register.aspx Here we render a selected contour form. After the user has filled out the form and submittet. We will mark the entry as not approved (standard contour). 3. Redirect to credit card payment (This is what we want - how to do this?) /PayForEventViaCard?contourEntryId=15&hash=somesecrethash 4. When the user has paid we update the contour form entry to approved
How can we do the redirect? from 2 to 3
NB My guess is that a workflow with Response.Redirect is not possible or if possible it could break future contour upgrades
Custom redirect on complete
Hi
Background: We are building a event registration site and we need to redirect to a custom page with a querystring parameter after the form has been completed.
This is the user workflow
1. User are viewing a event
/Events/MyEvent.aspx
2. User will register via alt template
/Events/MyEvent/Register.aspx
Here we render a selected contour form.
After the user has filled out the form and submittet. We will mark the entry as not approved (standard contour).
3. Redirect to credit card payment (This is what we want - how to do this?)
/PayForEventViaCard?contourEntryId=15&hash=somesecrethash
4. When the user has paid we update the contour form entry to approved
How can we do the redirect? from 2 to 3
NB My guess is that a workflow with Response.Redirect is not possible or if possible it could break future contour upgrades
Comment author was deleted
Redirecting from a workflow shouldn't be a problem
HttpContext.Current.Response.Redirect("where");
yup, trigger the workflow on record submitted, and do a standard Response.Redirect,
This is so cool
is working on a reply...