I need to create a web service, in .NET, where a sender can send data, as query string, and the parameter names are encoded. Below is an example of the URL to send the data: http://hostname/Processor/Service.asmx/InsertReport?A%2dE3%2dName=John
The method InsertReport needs to have A-E3-Name as a parameter.
How do I declare the parameter to receive the value John?