Zen
Zen

Reputation: 213

Facing issue when passing values in url

localhost/Suggest(FieldName='customunit',Value='t/min')/Tags?$top=10

It always treat as localhost/Suggest(FieldName%3D%27customunit%27%2CValue%3D%27t/min%27)/Tags%3F%24top%3D10 here see t/min is treated as url two url fragment but I want it to treat as single.

Can someone suggest me what I can do.

Thanks in advance

Upvotes: 0

Views: 62

Answers (1)

Nadeem Ahmad
Nadeem Ahmad

Reputation: 84

I think before passing value to Value you need to encode Value='t%2Fmin' which will resolve your issue

Upvotes: 3

Related Questions