my client have 2 server and from first server then want to send a request with some parameters and the second server take those parameters with get method, the problem is when the request come there is a + sign in it for e.g in blood group its A+, B+, O+

The data is coming fine but when I am inserting the record its removing + sign from it.

how can I get it done, as there is some space between them.

get method

http://domain.com/join.aspx?msid=238487987328&sms=Peter D 23 O+ Indiana

when I am getting it with Request.QueryString["sms"] its removing + sign

Thanks Regards

link|improve this question

79% accept rate
feedback

3 Answers

up vote 6 down vote accepted

You need to URL encode the parameters (or rather, the whole URL).

link|improve this answer
feedback

The + sign is the encoded version of a space, and therefore need URL Encoding to preserve it.

In fact, you need to URL Encode any URL passed parameters, make a note for the future!

link|improve this answer
feedback

Encode + sign then add it to your query string

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.