I have the web service:
[WebMethod] public void SendMail(string _name, string _email, string _message) { //Create Mail Message Object with content that y
You have to pass the three parameters from the cs code page, by calling like this way,
service.SendMail(name, email, message);