Click here to Skip to main content
15,885,874 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
Hi All,

I am using vs2008,c#,sqlserver with asp.net web application.

how to send sms from website using asp.net 3.5

any link or idea plz give me....

Regards
Mukesh
Posted

Hi,

I attached a link which describes how to send an sms from asp.net web application.

http://krishnasaralanet.blogspot.in/p/sending-sms-from-aspnet-application.html[^]

Happy Coding!!!
 
Share this answer
 
you can use any API of sms providers like way2sms..
C#
 HttpWebRequest req = (HttpWebRequest)WebRequest.Create("http://ubaid.tk/sms/sms.aspx?uid=*****&pwd=****&msg=" + textBox2.Text + "&phone=" + textBox1.Text + "&provider=way2sms");             
HttpWebResponse myrep = (HttpWebResponse)req.GetResponse();          
 
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