Click here to Skip to main content
15,908,455 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: sms Pin
_AK_31-Aug-06 2:15
_AK_31-Aug-06 2:15 
GeneralRe: sms Pin
Sebastian T Xavier31-Aug-06 19:49
Sebastian T Xavier31-Aug-06 19:49 
AnswerRe: sms Pin
Sathesh Sakthivel31-Aug-06 2:20
Sathesh Sakthivel31-Aug-06 2:20 
GeneralRe: sms Pin
munklefish31-Aug-06 6:37
munklefish31-Aug-06 6:37 
GeneralRe: sms Pin
Sebastian T Xavier31-Aug-06 19:51
Sebastian T Xavier31-Aug-06 19:51 
GeneralRe: sms Pin
Sebastian T Xavier31-Aug-06 19:41
Sebastian T Xavier31-Aug-06 19:41 
GeneralRe: sms Pin
Sebastian T Xavier31-Aug-06 19:47
Sebastian T Xavier31-Aug-06 19:47 
AnswerRe: sms Pin
Britney S. Morales31-Aug-06 12:01
Britney S. Morales31-Aug-06 12:01 
Let me help you, if you are relationated with XML Web Services, you can use this easy solution.

first.

goes to http://www.webservicex.net/WS/WSDetails.aspx?CATID=4&WSID=60

you will find the Send SMS World Web Service, this web service Send unlimited free SMS to a countries who support it.

Second.

add Web service Reference to your ASP.NET project
the address is http://www.webservicex.net/sendsmsworld.asmx
The name for the reference is in this example is ServerSms

third.
Use the code

try
{
string from = "Emitter E-mail";
string to = "Receiver Phone Number";
string countryCode = new String();
string message = "Hello World";
//Create a object from the ServerSms Class
ServerSms.SendSMSWorld engine = new ServerSms.SendSMSWorld();
engine.sendSMS(from, countryCode, to, message);
Estate.Text = "Your Message was send to " + to;
}
catch(Exception)
{
Estate.Text = "Send message Error"
}
Smile | :)

ff

GeneralRe: sms Pin
Sebastian T Xavier31-Aug-06 19:46
Sebastian T Xavier31-Aug-06 19:46 
GeneralRe: sms Pin
Suresh Pirsquare2-Sep-06 1:49
Suresh Pirsquare2-Sep-06 1:49 
Questioncolumns in datagrid Pin
Sebastian T Xavier31-Aug-06 1:31
Sebastian T Xavier31-Aug-06 1:31 
AnswerRe: columns in datagrid Pin
_AK_31-Aug-06 1:40
_AK_31-Aug-06 1:40 
GeneralRe: columns in datagrid Pin
Sebastian T Xavier31-Aug-06 1:59
Sebastian T Xavier31-Aug-06 1:59 
GeneralRe: columns in datagrid Pin
_AK_31-Aug-06 2:08
_AK_31-Aug-06 2:08 
Questionthumbnail enlargement in asp.net Pin
Swaroop Roy31-Aug-06 0:39
Swaroop Roy31-Aug-06 0:39 
AnswerRe: thumbnail enlargement in asp.net Pin
_AK_31-Aug-06 1:41
_AK_31-Aug-06 1:41 
GeneralRe: thumbnail enlargement in asp.net Pin
Swaroop Roy31-Aug-06 1:55
Swaroop Roy31-Aug-06 1:55 
GeneralRe: thumbnail enlargement in asp.net Pin
_AK_31-Aug-06 2:08
_AK_31-Aug-06 2:08 
AnswerRe: thumbnail enlargement in asp.net Pin
eggsovereasy31-Aug-06 4:06
eggsovereasy31-Aug-06 4:06 
QuestionFormsAuthentication's RedirectToLoginPage Method Pin
seee sharp31-Aug-06 0:37
seee sharp31-Aug-06 0:37 
AnswerRe: FormsAuthentication's RedirectToLoginPage Method Pin
minhpc_bk31-Aug-06 15:20
minhpc_bk31-Aug-06 15:20 
GeneralRe: FormsAuthentication's RedirectToLoginPage Method Pin
seee sharp5-Sep-06 21:58
seee sharp5-Sep-06 21:58 
QuestionDropDownList coloring in ASP.Net Pin
coolestCoder31-Aug-06 0:07
coolestCoder31-Aug-06 0:07 
AnswerRe: DropDownList coloring in ASP.Net Pin
_AK_31-Aug-06 0:13
_AK_31-Aug-06 0:13 
AnswerRe: DropDownList coloring in ASP.Net Pin
jitu gupta31-Aug-06 2:28
jitu gupta31-Aug-06 2:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.