web service exception handling
- by Jack
I have a WebMethod that recevives following types of parameters:
[WebMethod]
User(long userid,int number)
When Client send parameter with different types, I have to catch this error and write to database etc..
How can I solve this?
Thanks.