Click here to Skip to main content
15,922,584 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
SQL
hai,



am developing a web application for sms sending in this i want to send sms to customers about products but am not get any idea about to sending sms from asp.net C# application . and is thr any sms sending gateway to sending bulk sms. plaese give suugestions to send sms from asp.net c# application...

Thanks
Posted

Please refer similar QA on CP Search[^]
 
Share this answer
 
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://www.bulksmsjunction.net/api/sentsms.php?" + smsNo + " &message=" + Literal1.Text + "&sender=AVAIL");

HttpWebResponse response = (HttpWebResponse)request.GetResponse();
StreamReader reader = new StreamReader(response.GetResponseStream());
string result = reader.ReadToEnd();

CREATE YOUR ACCOUNT IN bulksmsjunction
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900