I
I R BABOON
0. Assume an application can send data using HTTP POST.
1. For some reason, it sends the name value pairs using the syntax x.y --
which is perfectly acceptable in HTML forms.
2. Now I want to write a web method to accept values from this
application.
3. But a c# web method will throw an error if I try to define a web method
such as
myMethods ( string x.y ) { ... }
because x.y cannot be a parameter name.
4. What do I do ?
1. For some reason, it sends the name value pairs using the syntax x.y --
which is perfectly acceptable in HTML forms.
2. Now I want to write a web method to accept values from this
application.
3. But a c# web method will throw an error if I try to define a web method
such as
myMethods ( string x.y ) { ... }
because x.y cannot be a parameter name.
4. What do I do ?