- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2024 06:45 AM
Hi All,
I am working on the SOW, I need to redirect the user to a specific Incident in the "Details" tab, when trying to place the following parameters in the URL: "/params/selected-tab-index/1" I get the following characters in the URL: "%2Fparams%2Fselected-tab-index%2F1" is there any way to set the URL correctly?
Thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2024 08:42 AM
Hi @Pablo Sanz
I think you can encode the URL parameters properly. The "%2F" characters represent the forward slash ("/") in URL encoding.
Instead of directly including the forward slash in the URL parameter, you should encode it as "%2F". However, if you want to include the forward slash without encoding, you can use a backslash ("\") as an escape character before each forward slash.
like this below
/params\selected-tab-index\1
If this helps kindly accept the answer thanks much.
Best regards,
Azar
Kind Regards,
Mohamed Azarudeen Z
Developer @ KPMG
Microsoft MVP (AI Services), India
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2024 07:03 AM
This is the URL encoding, in the URL special characters are encoded.
%2f is the encoded value for /
See the list here ->HTML URL Encoding Reference (w3schools.com)
this is encoded and decoded by itself, you dont need do do anything additional.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2024 07:07 AM
Thank you for your reply, unfortunately when I set these characters, it does not send me correctly to the record, I get the following message:
So I wanted to see if it was possible to remove them.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2024 07:18 AM
if you use the original url, does it take you to the right place?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2024 07:21 AM
Yes it does.