473,508 Members | 2,263 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

send SMS using asp.net(C#) 2.0

nil
Hello everyone,

I just wanted to develop one web application which allows users to
send an SMS to any mobile free of charge or i can say that i want to
develop web application like www.160by2.com which allows users to send
SMS for free of charge and you can send the same message to multiple
people (Max 10) with full ajax support. I searched on the net and
found many codes and articles and through those articles i came to
know that for that kind of application, i required either of the
following things:

1. Web service (Third party web services that are free but not
working or not delivering the sms)
2. GSM Modem ( I don't have any idea about this)
3. SMS Gateway ( I don't have any idea about this)

I can use either of the following and my work will be done. but if i
can have free web service which is really working then it would be
great or even i am ready to pay for that but charge should be minimal
and support multiple message sending or suggest good gsm modem and how
i can make such an application with it.

Please guide me through this. From where do i start? and one more
thing is that does asp.net 2.0 have inbuilt libraries that provide any
facility to send an SMS.

Any help will be appreciated !

Regards,
Nil
"Never Expect..Never Regret"
Aug 12 '08 #1
3 20564
ASP.NET does NOT have any inbuilt API support to send out an SMS. You need
to go for a third party solution or use something that is found on the
Internet.

There could also be some sites that expose a web service interface for you
to consume to send out a SMS but these may or may not be reliable.

Point is.. no default support in ASP.NET. Infact you can send out an email
but cant receive an email using the Base class library.

"nil" <Ni**************@gmail.comwrote in message
news:59**********************************@1g2000pr e.googlegroups.com...
Hello everyone,

I just wanted to develop one web application which allows users to
send an SMS to any mobile free of charge or i can say that i want to
develop web application like www.160by2.com which allows users to send
SMS for free of charge and you can send the same message to multiple
people (Max 10) with full ajax support. I searched on the net and
found many codes and articles and through those articles i came to
know that for that kind of application, i required either of the
following things:

1. Web service (Third party web services that are free but not
working or not delivering the sms)
2. GSM Modem ( I don't have any idea about this)
3. SMS Gateway ( I don't have any idea about this)

I can use either of the following and my work will be done. but if i
can have free web service which is really working then it would be
great or even i am ready to pay for that but charge should be minimal
and support multiple message sending or suggest good gsm modem and how
i can make such an application with it.

Please guide me through this. From where do i start? and one more
thing is that does asp.net 2.0 have inbuilt libraries that provide any
facility to send an SMS.

Any help will be appreciated !

Regards,
Nil
"Never Expect..Never Regret"

Aug 12 '08 #2
nil
On Aug 12, 12:02*pm, "Sriram Srivatsan" <sriramsrivat...@srasys.co.in>
wrote:
ASP.NET does NOT have any inbuilt API support to send out an SMS. You need
to go for a third party solution or use something that is found on the
Internet.

There could also be some sites that expose a web service interface for you
to consume to send out a SMS but these may or may not be reliable.

Point is.. no default support in ASP.NET. Infact you can send out an email
but cant receive an email using the Base class library.

"nil" <NileshThakker...@gmail.comwrote in message

news:59**********************************@1g2000pr e.googlegroups.com...
Hello everyone,
I just wanted to develop one web application which allows users to
send an SMS to any mobile free of charge or i can say that i want to
develop web application likewww.160by2.comwhich allows users to send
SMS for free of charge and you can send the same message to multiple
people (Max 10) with full ajax support. I searched on the net and
found many codes and articles and through those articles i came to
know that for that kind of application, i required either of the
following things:
1. Web service * *(Third party web services that are free but not
working or not delivering the sms)
2. GSM Modem * ( I don't have any idea about this)
3. SMS Gateway ( I don't have any idea about this)
I can use either of the following and my work will be done. but if i
can have free web service which is really working then it would be
great or even i am ready to pay for that but charge should be minimal
and support multiple message sending or suggest good gsm modem and how
i can make such an application with it.
Please guide me through this. From where do i start? and one more
thing is that does asp.net 2.0 have inbuilt libraries that provide any
facility to send an SMS.
Any help will be appreciated !
Regards,
Nil
"Never Expect..Never Regret"
Thanks sriram..thanks a lot..but do you have any information about any
of the option that i described in my previous post or anything other
than i can use to develop web application like www.160by2.com

Regards,
Nil
"Never expect Never Regret"
Aug 12 '08 #3
"nil" <Ni**************@gmail.comwrote in message
news:be**********************************@v1g2000p ra.googlegroups.com...
do you have any information about any of the options that I described
GIYF:
http://www.google.co.uk/search?sourc...P%2eNET%22+SMS

As with everything which the .NET Framework doesn't support natively, there
are literally dozens of 3rd-party solutions - pick one that you like and use
it.
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Aug 12 '08 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
3249
by: John J. Hughes II | last post by:
I have a service that needs to send e-mail alerts. I have been attempting to use the System.Net.Mail function from .NET but this seems to require the IIS be installed and running. Since some of...
3
9088
by: Sara | last post by:
HI, I want to code a program to detect GSM mobile (any kind) which connected through serial port to computer and then be able to send SMS through this mobile phone to other mobile phones, could...
9
4293
by: Bob Jones | last post by:
We have developed a commercial ASP.net application (personal nutrition management and tracking); we want to send smtp email from within it. For our development box, we use WinXP Pro, IIS 5.5,...
2
3477
by: Ryan | last post by:
Hi, I receive an access denied error (see below) when attempting to send an email with BodyFormat=MailFormat.Html from an asp.net page. Exactly the same code works fine in a console...
14
9105
by: supz | last post by:
Hi, I use the standard code given below to send an email from an ASP.NET web form. The code executes fine but no Email is sent. All emails get queued in the Inetpub mail queue. I'm using my...
3
4264
by: BuddyWork | last post by:
Hello, Could someone please explain why the Socket.Send is slow to send to the same process it sending from. Eg. Process1 calls Socket.Send which sends to the same IP address and port, the...
0
3138
by: Buddy Home | last post by:
There is two examples of code. Example 1. Send and Receive within the same process. Put this code in a console app called SendAndReceive and run the code. using System; using...
4
7668
by: =?Utf-8?B?dHBhcmtzNjk=?= | last post by:
I have a web page that at the click of a button must send a bunch (1000+) emails. Each email is sent individually. I have the code working fine, using Mail Message classes and smtp and all that. ...
8
7265
by: shapper | last post by:
Hello, I am trying to send an email using Asp.Net 2.0. I am getting the following error: System.Net.Mail.SmtpFailedRecipientException: Mailbox unavailable. The server response was: No such...
7
22840
by: Rob Dob | last post by:
The following code is giving me a timeout problem., no matter what I do I can't send a piece of mail using .net2.0 System.Net.Mail.SmtpClient via port 465 and using ssl, if however I try using...
0
7401
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7063
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7504
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5640
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5059
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4720
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3196
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1568
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
773
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.