How send sms from websites using asp.net c# without third party sms gate way

佐手、 提交于 2019-12-08 14:06:49

问题


I use in website two fields txtmono and txtmsg and one button btnsend. I want to send sms under button btnsend. I use one GSM Modem (3G).

Thanks.........


回答1:


Either you would have to host your own website, or you would have to get the notifictions to send SMSes sent to you in real time.

You would also need a SIM with an account with a mobile operator that lets you send SMS, bearing in mind that normal customer accounts aren't designed for commercial use.

The actual SMS sending can be done via commands on Windows Mobile Broadband API (assuming you're on Windows 7+) or AT commands sent to the modem port if you're on another OS.

But a single 3G modem can't send a big volume of SMSes over the radio interface anyway. It is not suitable for any commercial application. That's why there are gateways that get bulk SMSes via the internet and feed them directly into the messaging centre in the mobile network via an IP connection.

I don't know what the purpose of your website is, but using your own modem is unlikely to meet your needs.



来源:https://stackoverflow.com/questions/20235085/how-send-sms-from-websites-using-asp-net-c-sharp-without-third-party-sms-gate-wa

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!