Skip to main content

Send Sms Message source code in C# ASP .NET using API provider

Send SMS through the your developed project by just adding the following code.


Just write the following code on button click of the send button.

String CompleteUrl = "http://enterprise.smsgupshup.com/GatewayAPI/rest?msg=" + msg + "&v=1.1&userid=****&password=****&send_to=" + nu + "&msg_type=text&method=sendMessage";
        WebRequest request = WebRequest.Create(CompleteUrl);
        HttpWebResponse response = (HttpWebResponse)request.GetResponse();
        StreamReader reader = new StreamReader(response.GetResponseStream());
        string result = reader.ReadToEnd(); 
// This will contain the status of message e.g. failed, ok etc.
        lbl_msg.Text = result.ToString();

I hope this code will help you........................

Comments

Popular posts from this blog

Asp.Net Web API

What is ASP.NET Web API? ASP.NET Web API is a framework provided by the Microsoft with which we can easily build HTTP services that can reach a broad of clients, including browsers, mobile, IoT devices, etc. ASP.NET Web API provides an ideal platform for building RESTful applications on the .NET Framework.   Difference between ASP.NET Web API and WCF Web AP I is a Framework to build HTTP Services that can reach a board of clients, including browsers, mobile, IoT Devices, etc. and provided an ideal platform for building RESTful applications. It is limited to HTTP based services. ASP.NET framework ships out with the .NET framework and is Open Source. WCF i.e. Windows Communication Foundation is a framework used for building Service Oriented applications (SOA) and supports multiple transport protocol like HTTP, TCP, MSMQ, etc. It supports multiple protocols like HTTP, TCP, Named Pipes, MSMQ, etc. WCF ships out with the .NET Framework. Both Web API and WCF can be self-hosted or can be...