views:

193

answers:

2

How can I send an SMS text message from my cellphone and have it received and processed on my asp.net website? I have no idea where to start.

+3  A: 

This article looks like it's exactly what you need, or at least get you started: http://www.dotnetspider.com/resources/2906-ASP-NET-wi-HttpListener-receive-SMS-messages.aspx

David Weitz
That's a great article, thanks David.
Marcus
+2  A: 

It really depends on what you want to achieve with your application.

For a more robust solution you would need to use an SMS Gateway provider. I would recommend someone like Clickatell http://www.clickatell.com/products/two_way.php. They have a simple API you can integrate with to send and receive messages via your application.

The drawback here is that you'll need to pay for setup as well as rent a virtual mobile number which will be used for receiving messages.

John Spence