I am writing a GET calculator for my website. This calculator calculates expressions provided in the exp parameter of the URL. I know its against RFC but is there any way I can allow + sign in URL?
One way I found was to provide a documentation to my users where they will replace some special tags to add plus sign like [op:plus]. This is then replaced by + in code behind which a ASP.NET generic handler. But it will be great if there is anything in the RFC that allows + sign. So that I don't have to provide any documentation.