C caillaud Member Licensed User Longtime User Mar 2, 2012 #1 Hi B4X: myurl= ServerUrl & "?query=" & reservation.Replace(" ","(nbsp)") HttpUtils.Download("job1", myurl) space caracter in the sent string generates an error is it possible to do something better on the server I have to do the contrary reservation.replace("(nbsp)," ") sincerely michel
Hi B4X: myurl= ServerUrl & "?query=" & reservation.Replace(" ","(nbsp)") HttpUtils.Download("job1", myurl) space caracter in the sent string generates an error is it possible to do something better on the server I have to do the contrary reservation.replace("(nbsp)," ") sincerely michel
NJDude Expert Licensed User Longtime User Mar 2, 2012 #2 Maybe you need to do this: B4X: reservation = reservation.Replace(" ", "+") myurl = ServerUrl & "?query=" & reservation Upvote 0
Maybe you need to do this: B4X: reservation = reservation.Replace(" ", "+") myurl = ServerUrl & "?query=" & reservation
C caillaud Member Licensed User Longtime User Mar 2, 2012 #3 hi thanks I am going to try that sincerely michel Upvote 0