Re: url parameter encoding using javascript function problem

2011-01-20 Thread Rajiv Nanduani
Thanks a lot Now its working by using esacpe function of javascript. /search?q=${__javaScript(escape(vars.get("abc"));)} But incase my parameter value caontain email address then it store @ but this can not be worked by esacpe function for this i have to use encodeURIComponent function. is any

Re: url parameter encoding using javascript function problem

2011-01-20 Thread sebb
On 20 January 2011 06:09, Rajiv Nanduani wrote: > Hi all, > > In jmeter i have to pass around 15 to 20 url parameters from csv file . I am > using the javascript function to encoding the url parameters I am not using > the Jmeter send parameter with request table option. there is also option > avi

Re: url parameter encoding using javascript function problem

2011-01-20 Thread Rajiv Nanduani
hi, Variable abc initialized in user defined variables. or we can use this value from csv file I used all javascript functions escape() ,encodeURI() , encodeURIComponent()

Re: url parameter encoding using javascript function problem

2011-01-20 Thread Felix Frank
On 01/20/2011 07:09 AM, Rajiv Nanduani wrote: > Hi all, > > In jmeter i have to pass around 15 to 20 url parameters from csv file . I am > using the javascript function to encoding the url parameters I am not using > the Jmeter send parameter with request table option. there is also option > avi