Skip to main content

Rupees

 server---

return Convert.ToString(rup * 75.95) + " is amount of dollar and " + Convert.ToString(rup * 84.95) + " is amount of euros and " + Convert.ToString(rup * 100.25) + " is amount of pound";


client---

        double r1 = Convert.ToDouble(TextBox1.Text);
            ServiceReference1.WebService1SoapClient obj = new ServiceReference1.WebService1SoapClient();
            string res = obj.convert(r1);
            Label2.Text = res;

Comments