I am sending commands through a WEB server.Commands' URL format has "&text=mycommand" in it. Example myurl&text=AT#123 The problem is my commands have to have # in them. This is the protocol the receiving device understands. Is there a way to accomplish it? The part after # is cut, I guess it's because it is treated as section identifier. Thanks. Kirill.
Asked
Active
Viewed 89 times
1 Answers
2
Try replacing #
with %23
.
See this list for more information.

O. R. Mapper
- 20,083
- 9
- 69
- 114
-
I tried it, but it is translated back to # and treated the same. – Kirill Kazoolin Jun 10 '12 at 15:34