
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2019 03:25 PM
Upon successful on-boarding from a Guest Portal, I'm trying to redirect the guest to a specific URL via Authentication Success Settings.
Is there a setting to decrease the delay before redirecting to the URL? While testing in the lab, the redirect delay is around 10 - 15 seconds. Just long enough for the guest to wonder if this worked or not.
Thank you!
Solved! Go to Solution.
- Labels:
-
Identity Services Engine (ISE)
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2019 02:01 PM
Put this in our Optional Content 2 section of the Success Page:
<script>
setTimeout("location.href = 'https://www.cisco.com';",5000);
</script>
Modify the time (milliseconds) and reference as needed. Just tested it and it works like a charm.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2019 12:17 AM
Did you trace where the delay is?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2019 02:01 PM
Put this in our Optional Content 2 section of the Success Page:
<script>
setTimeout("location.href = 'https://www.cisco.com';",5000);
</script>
Modify the time (milliseconds) and reference as needed. Just tested it and it works like a charm.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2019 02:25 PM
