Pass slash as a parameter on url in applicationg setting
extjs, reporting-services, ssrs-2008, ssrs-2012
Solution
Well this is easy
encodeURIComponent('Tiger/Cheetah')
and the other side must do vice verse
decodeURIComponent('Tiger%2fCheetah')
Problem
I have an extjs application that sends a parameter to an application setting with a slash... for eg "Tiger/Cheetah", to print a report... my ssrs report also takes that parameter fine... but when going through a web browser the passed parameter does not take "Tiger/Cheetah" with the slash... it takes "Tiger" but there are no records for that in the report... I tried to replace / with %2f like this ``` Tiger%2fCheetah ``` and it's not working... is there any other way?