Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi
I'm trying to create a user definable redirect page in Umbraco 9 as I migrate from version 8. I did this previously using a simple...
response.redirect("url")
... statement, however this no longer seems to be supported in .net Core.
So I need a new solution for umbraco 9. Any ideas?
I resolved this issue with the following code...
Context.Response.Redirect(Url.Content(@myUrlString));
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Umbraco 9: Page redirect
Hi
I'm trying to create a user definable redirect page in Umbraco 9 as I migrate from version 8. I did this previously using a simple...
response.redirect("url")
... statement, however this no longer seems to be supported in .net Core.
So I need a new solution for umbraco 9. Any ideas?
I resolved this issue with the following code...
Context.Response.Redirect(Url.Content(@myUrlString));
is working on a reply...