I am new in asp.net. I dnt know more about asp.net. But wanna to know that how to send sms in asp.net? What is procedure for it? Procedure means i want details that whether i have 2 contact to any mobile network center eg. airtel , idea, etc asking for to
activate this service for sending sms through my website? and also wan that how send sms in asp.net i.e. coding? i read many articals , but i found that WSDL , modem and all...but i am really confuesd that how to do that????
Please help me all you experts as soon as possible....
>I found that WSDL , modem and all...but I am really confused that how to do that?
Once you have signed up to the SMS-sending web service (I have used one that provided a test account that would allow a limited number of messages per day), Import the the web service into a class project and use the function to send an SMS.
Click "Mark as Answer" on the post that helped you.
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
I have done this recently, I have used a company called
www.intellisoftware.co.uk They are reasonably cheap and allow you to block by SMS in advance.
Go to there website and setup an account, you will get 10 free SMS for testing. There is a help file showing how to set it up but it doesnt show you the gateway to use, see below!
You will need to download there dll add it to the bin file and add a reference to it.
None
0 Points
2 Posts
How to send sms in asp.net(vb)???pls help
Apr 21, 2008 12:21 AM|rachana.sonawane.1127|LINK
Hello friends,
I am new in asp.net. I dnt know more about asp.net. But wanna to know that how to send sms in asp.net? What is procedure for it? Procedure means i want details that whether i have 2 contact to any mobile network center eg. airtel , idea, etc asking for to activate this service for sending sms through my website? and also wan that how send sms in asp.net i.e. coding? i read many articals , but i found that WSDL , modem and all...but i am really confuesd that how to do that????
Please help me all you experts as soon as possible....
Thanks .... bye....
Member
535 Points
195 Posts
Re: How to send sms in asp.net(vb)???pls help
Apr 21, 2008 01:36 AM|osbornm|LINK
use the mail class to send ti to the sms email address 111-555-4444@mycingular.com
http://blog.osbornm.com
http://www.codingqa.com
http://weblogs.asp.net/asptest
"Change the world or go home."
None
0 Points
2 Posts
Re: How to send sms in asp.net(vb)???pls help
Apr 21, 2008 05:09 AM|rachana.sonawane.1127|LINK
thanks friend. but first can tell me about that whether i have to activate that service my mobile? Means first i have to do?
All-Star
44562 Points
13648 Posts
MVP
Re: How to send sms in asp.net(vb)???pls help
Apr 21, 2008 06:30 PM|TATWORTH|LINK
>I found that WSDL , modem and all...but I am really confused that how to do that?
Once you have signed up to the SMS-sending web service (I have used one that provided a test account that would allow a limited number of messages per day), Import the the web service into a class project and use the function to send an SMS.
This earns you a point and marks your thread as Resolved so we will all know you have been helped.
FAQ on the correct forum http://forums.asp.net/p/1337412/2699239.aspx#2699239
Participant
1221 Points
721 Posts
Re: How to send sms in asp.net(vb)???pls help
Apr 22, 2008 07:30 AM|Avinash Desai|LINK
Hey
Please go through the below links
Link 1
Link 2
~Avinash desai~
Software Developer
Bangalore
Please remember to click "Mark as Answer" on this post if it helped you.
Member
3 Points
18 Posts
Re: How to send sms in asp.net(vb)???pls help
Apr 30, 2008 07:18 AM|tomwilliams|LINK
I have done this recently, I have used a company called www.intellisoftware.co.uk They are reasonably cheap and allow you to block by SMS in advance.
Go to there website and setup an account, you will get 10 free SMS for testing. There is a help file showing how to set it up but it doesnt show you the gateway to use, see below!
You will need to download there dll add it to the bin file and add a reference to it.
Dim
objIntelliSMS As New IntelliSoftware.IntelliSMS objIntelliSMS.Username = USERNAME objIntelliSMS.Password = PASSWORD objIntelliSMS.PrimaryGateway = "http://www.intellisoftware.co.uk" objIntelliSMS.BackupGateway = https://www.intellisoftware2.co.ukobjIntelliSMS.RequestDeliveryRpt =
True Dim strResult As String = objIntelliSMS.SendMsgWithUserContext(strMobileNo, strMessage, Nothing, "Your OWN ID")Hope this helps
Tom