Implement SMS sending functionality in ASP.NET C# web application -
i have requirement send sms users asp.net web application. first want know whether any free service available this? when googled got lots of links (even stackoverflow) related sending sms via way2sms.com 160by2 , such sort of things unfortunately not single thing worked. tried smsclient.dll , ended same story again.
i reliable reply has implemented same , how done since have spend lot of time googling , trying sample codes got internet.
i had implemented project sms text generated after user selects text , forwarded mobile numbers fetched database.
the sms gateway provider gave url in sms text , mobile numbers embedded parameter values , below
string url =@"http://10.10.10.10/id=ourid&password=xyz&message="+smstext+"&mobilenum="+num[i];
this string string contained url called using webclient class
using (webclient client = new webclient()) { client.downloadstring(url); }
Comments
Post a Comment