IT Community - Software Programming, Web Development and Technical Support

Sending SMS through ASP.Net

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 ...


Go Back   IT Community - Software Programming, Web Development and Technical Support > Web Development > ASP and ASP.NET Programming

Register FAQ Members List Calendar Mark Forums Read
  #1 (permalink)  
Old 09-10-2007, 08:45 AM
S.Vinothkumar S.Vinothkumar is offline
D-Web Genius
 
Join Date: May 2007
Posts: 1,061
S.Vinothkumar is on a distinguished road
Question Sending SMS through ASP.Net

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!
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 09-11-2007, 04:38 AM
amansundar amansundar is offline
D-Web Analyst
 
Join Date: May 2007
Posts: 325
amansundar is on a distinguished road
Wink Re: Sending SMS through ASP.Net

As far as I know, you have to use a Gateway to send SMS messages through asp.net.
__________________
cheers
Aman
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 09-11-2007, 04:49 AM
leoraja8 leoraja8 is offline
D-Web Sr.Programmer
 
Join Date: May 2007
Posts: 194
leoraja8 is on a distinguished road
Post Re: Sending SMS through ASP.Net

Hai vinoth,

check out this link. i will help u.....

Sending SMS using .NET through Web service - The Code Project - ASP.NET
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 09-11-2007, 09:22 AM
mobilegeek mobilegeek is offline
D-Web Analyst
 
Join Date: Jun 2007
Posts: 205
mobilegeek is on a distinguished road
Wink Re: Sending SMS through 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.
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 09-12-2007, 11:59 PM
SaravananJ SaravananJ is offline
D-Web Programmer
 
Join Date: Aug 2007
Posts: 79
SaravananJ is on a distinguished road
Question Re: Sending SMS through ASP.Net

Hi there!,

Somebody using SMPP support for their SMS gateway.

What is SMPP? And how to use SMPP in ASP.NET?
__________________
J.Saravanan
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 09-13-2007, 12:29 AM
amansundar amansundar is offline
D-Web Analyst
 
Join Date: May 2007
Posts: 325
amansundar is on a distinguished road
Red face Re: Sending SMS through ASP.Net

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
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 09-13-2007, 01:23 AM
S.Vinothkumar S.Vinothkumar is offline
D-Web Genius
 
Join Date: May 2007
Posts: 1,061
S.Vinothkumar is on a distinguished road
Question Re: Sending SMS through ASP.Net

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!
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 09-13-2007, 02:56 AM
leoraja8 leoraja8 is offline
D-Web Sr.Programmer
 
Join Date: May 2007
Posts: 194
leoraja8 is on a distinguished road
Cool Re: Sending SMS through ASP.Net

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....
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 09-13-2007, 03:55 AM
raja raja is offline
D-Web Trainee
 
Join Date: May 2007
Posts: 34
raja is on a distinguished road
Question Re: Sending SMS through ASP.Net

Is any software for sending SMS?
__________________
Raja. Myblog
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 09-13-2007, 04:14 AM
mobilegeek mobilegeek is offline
D-Web Analyst
 
Join Date: Jun 2007
Posts: 205
mobilegeek is on a distinguished road
Talking Re: Sending SMS through ASP.Net

Hi all,

Go the following link and get an application for sending sms.

ActiveXperts Software - Download 30-day trial versions
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #11 (permalink)  
Old 09-13-2007, 04:43 AM
krishnakumar krishnakumar is offline
D-Web Analyst
 
Join Date: May 2007
Posts: 206
krishnakumar is on a distinguished road
Post Re: Sending SMS through ASP.Net

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
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #12 (permalink)  
Old 09-13-2007, 06:33 AM
S.Vinothkumar S.Vinothkumar is offline
D-Web Genius
 
Join Date: May 2007
Posts: 1,061
S.Vinothkumar is on a distinguished road
Wink Re: Sending SMS through ASP.Net

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!
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #13 (permalink)  
Old 09-17-2007, 05:29 AM
latchu latchu is offline
D-Web Trainee
 
Join Date: Sep 2007
Posts: 21
latchu is on a distinguished road
Cool Re: Sending SMS through ASP.Net

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.
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


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


All times are GMT -7. The time now is 03:33 PM.


Copyright ©2004 - 2007, DiscussWeb. All Rights Reserved.

SEO by vBSEO 3.0.0