In my application, When hyperlink clicked by the end user, The javascript function will get executed. and it generates request. But with parameters, the url is generating with space between parameters.
How to trim the space in the url? Any Idea?
|
|
|
A URL must not contain a literal space. You should encode the url using built in javascript function encodeURI.
Or Better use encodeURIComponent as you want to encode a URL parameter. Hope this helps. |
|||||||
|
|
Ideally you should check your JavaScript code that generates such url with space between parameters. That is not correct. So instead of trying to trim the url, you should modify your javascript code that generates the url. |
|||||
|