This is a discussion on Sending SMS through ASP.Net within the ASP and ASP.NET Programming forums, part of the Web Development category; Hi all, I'm working in ASP.Net2.0. I need to send SMS thorugh my aspx page. Is there ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Hi all, I'm working in ASP.Net2.0. I need to send SMS thorugh my aspx page. Is there any possiblities for sending sms through a web page... I'm using C# 2.0 as code behind.... Can anybody pls help....
__________________ S.VinothkumaR Behind me is infinite power, Before me is Endless Possibility, Around me is Boundless Opportunity, Why should I fear! |
| Sponsored Links |
| |||
| Hai vinoth, check out this link. i will help u..... Sending SMS using .NET through Web service - The Code Project - ASP.NET |
| |||
| You can do this in one of three ways: 1. you have a GSM modem (or equevilant in non GSM networks) , GSM modems normally accept AT commands on the serial port, which is not hard to learn or develop on any languages.. 2. You buy an SMPP link from any service provider and write an implimentation for the SMPP protocol which is somehow like the TCP protocol (its actually built on top of it), acquiring a link is not a cheap solution and providers normally provide this only for corporates with huge consumption of SMS messages. 3. Buy SMS qoutation from a web-based provider (I may suggest BulkSMS.com) that enables you from writing a software implementation to send special requests for sending SMS messages over the internet... If you are developing an application to send a certain limited number of SMS messages per day (frequency less than 1 message per 20 seconds) then GSM modem will be sufficient and inexpensive. If you are developing an application to send bulk messages (thousands per day) the you might want to consider any of the later 2 options. |
| |||
| Well SMPP is a Protocl that you can fine allot of documentatioin about, but you will have to send these HTTP-Like as requests to the SMPP server after formating the request string, I am not sure how feasible is it from ASP .Net since you will have to write low-level programming that includes socket interaction. You may use COM objects written in C++ to communicate with SMPP.
__________________ cheers Aman |
| |||
| Hello to all. I have pretty much the same problem and I'm focusing to using the solution with the gsm modem. anybody can pls tell me how to interacting with such a device? What I need is to retrieve the sms FROM the mobile phone then transform it to an sql query and update my database. But my problem for now is how to retrieve the message from the mobile phone... Any links or articles or tutorials about it?
__________________ S.VinothkumaR Behind me is infinite power, Before me is Endless Possibility, Around me is Boundless Opportunity, Why should I fear! |
| |||
| SMSconnect is carrier-grade application that runs MSMQ and Windows service and talks to telecommunication providers' SMSC via EMPP. No talk to GSM modem at all. more about serial COM visit here.... |
| |||
| Hi all, Go the following link and get an application for sending sms. ActiveXperts Software - Download 30-day trial versions |
| |||
| Dear all, I have found a COM component from StrongCube.Com that talks to GSM modems supporting the standard AT commands.
__________________ Krishnakumar.S Beware of Everything -that is un true; stick to the Truth shall succeed slowly but steadily |
| |||
| Hi all, see the link...Using ASP to Send a Wireless Text Message for sending SMS through our web page.
__________________ S.VinothkumaR Behind me is infinite power, Before me is Endless Possibility, Around me is Boundless Opportunity, Why should I fear! |
| |||
| Please check out this pages who give .net library and you can use it freely But you should need SMPP account from your mobile network company. Free .NET components / assemblies, Socket, Smpp, Sms, Xml, Protocols and more Microsoft .NET components, DLL, assembly, free .NET component, free .NET assemblies, free .NET assembly http://www.inetlab.ru/en/ALT.SMS.SmppClient Last edited by latchu : 09-17-2007 at 05:31 AM. |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| sending files from mobile to pc using bluetooth | amansundar | Mobile Software Development | 14 | 01-04-2009 05:17 AM |
| Sending message to mobile using php | saravanan | PHP Programming | 6 | 01-02-2008 12:05 AM |
| How do I validate the form input before sending it to the server? | itbarota | HTML, CSS and Javascript Coding Techniques | 1 | 09-13-2007 02:57 AM |
| Is there any sample code for sending a text file from the phone to the PC via... | mobilegeek | Mobile Software Development | 4 | 09-11-2007 04:12 AM |
| Sending and Receiving values between Flash and .NET(sendAndLoad) | oxygen | Flash Actionscript Programming | 1 | 07-17-2007 03:10 AM |