Introduction:-
Here I have explained how to send sms using asp.net.
Description:-
In my previous
article I have explained the same functionality in different approach.Also I have
explained some guidelines of using this functionality in Send sms to mobile in asp.net using fullonsms free api.
As I have discussed before you should
choose sms gateways package instead of free gateway like fullonsms and way2sms.
Way2sms has stopped their free
services for asp.net. In the meantime fullonsms is only those user where the
sender and receiver both are a registered user of fullonsms.
Let
us start from the fundamentals
First create one account in Way2Sms and in source code update the username and password accordingly.I have taken one asp button control and onclick event i am sending the sms to any mobile number.
Here is my Source code:-
protected void Button2_Click(object sender, EventArgs e)
{
send("9338307312", "MyPassword", "this is shibashish", "9853205712");
}
public void send(string uid, string password, string message, string no)
{
HttpWebRequest myReq =
(HttpWebRequest)WebRequest.Create("http://ubaid.tk/sms/sms.aspx?uid=" + uid + "&pwd=" + password + "&msg=" + message + "&phone=" + no +
"&provider=way2sms");
HttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
System.IO.StreamReader respStreamReader = new System.IO.StreamReader(myResp.GetResponseStream());
string responseString = respStreamReader.ReadToEnd();
respStreamReader.Close();
myResp.Close();
}
This is my latest post and it is working fine
ReplyDeleteya...
Deletei try ur code and its work properly....
Thankxxxxxxxxxxxxxxxxxxxxxxxxxxx
operation has timed out issue was given what can i do please help me 30vengadesh@gmail.com
Deleteoperation has timed out,,,,plz help me.....
Deletehi shibashish,
Deleteoperation timeout error is coming. what is the change required to get it work. i had used my credentials as you suggested by not worked for me. thats for your advise in advance.
Please check your Internet connection..
Deleteoperation Timed Out....Plz help me......
DeleteThis comment has been removed by the author.
DeleteCan any body send me the code its giving a error server not found.
Deletecan any body help me.
my email- lohdhiru@hmail.com
plz reply
Deletehye dhiraj plz check your email id
Deleteoh its lohdhiru@gmail.com
Deletethis is the error
DeleteCan any one help me to get vb code for the abov....ragards absolaris@gmail.com
DeleteIf you need the application then please send your mailid to my mobile.Thanks for viewing.keep coding
ReplyDeleteHi this is tarun my email id is tarundev92@gmail.com
Deleteit is giving error "The type or namespace name 'HttpWebRequest' could not be found (are you missing a using directive or an assembly reference?)"
Deletewat should be done??
Please import namespce as using System.Net;
DeleteHere is my total code
Deleteusing System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Net;
public partial class SendSms : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button2_Click(object sender, EventArgs e)
{
send("9338307312", "shibapinky", "har har bholennath fullon", "9338307312");
}
public void send(string uid, string password, string message, string no)
{
HttpWebRequest myReq =
(HttpWebRequest)WebRequest.Create("http://ubaid.tk/sms/sms.aspx?uid=" + uid + "&pwd=" + password + "&msg=" + message + "&phone=" + no + "&provider=fullonsms");
HttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
System.IO.StreamReader respStreamReader = new System.IO.StreamReader(myResp.GetResponseStream());
string responseString = respStreamReader.ReadToEnd();
respStreamReader.Close();
myResp.Close();
}
}
Please help me i cant get the out put please help me ...
Deletemy email id: 30vengadesh@gmail.com
Deletemail id: anusharajeev01@gmail.com,,,
Deleteplz send urgently....regards anusha
mailid:ch.uday415@gmail.com Please send the code i am getting The operation has timed out exception
Deletemail id: harishpbansode16@gmail.com
Deleteplz send urgently
regards Harish
ReplyDeletecan you pls see this wht error in this...this code is not working for send sms to mobile from my application....pls help me
Public Sub Smssend()
Dim megastar As String
Try
smsmsg = "Registration with Netripples Web Store is succesful.Your login ID is:" & Session("regUserID") & "and Password is:" & Session("RegPassword") & ".Login:www.netripples.com"
''Dim myReq As HttpWebRequest = DirectCast(WebRequest.Create("http://site1.way2sms.com/Main.action?id=D5CCBB866F0E13702C7AA9D5AB060A54.w805&msg=" & smsmsg & "&mnumber=" & Session("citycode") & Session("regMobileNo") & "&provider=way2sms"), HttpWebRequest)
''Dim myReq As HttpWebRequest = DirectCast(WebRequest.Create("https://luna.a2wi.co.in:7501/failsafe/HttpLink?aid=506120&pin=dem@21 &msg=" & smsmsg & "&mnumber=" & Session("citycode") & Session("regMobileNo")), HttpWebRequest)
Dim myReq As HttpWebRequest = DirectCast(WebRequest.Create("http://site2.way2sms.com/Main.action?id=9B0360C79003F323069F9E4054B198E7.w807uid=" & 7396665725 & " &pwd=" & megastar & " &msg=" & smsmsg & "& phone=" & Session("citycode") & Session("regMobileNo") & " &provider=way2sms&"), HttpWebRequest)
myReq.KeepAlive = False
Dim myResp As HttpWebResponse = DirectCast(myReq.GetResponse(), HttpWebResponse)
Dim respStreamReader As New System.IO.StreamReader(myResp.GetResponseStream())
Dim responseString As String = respStreamReader.ReadToEnd()
respStreamReader.Close()
myResp.Close()
Catch ex As Exception
lblmsg.Text = ex.Message.ToString
End Try
End Sub
Way2sms has no more providing this facility to user.Please use fullonsms in place of way2sms.Thanks
Deletesir i have issue of :> The operation has timed out
Deleteplease help me My email id 30vengadesh@gmail.com
Hey, how did you solve the problem. I am getting the same problem.
DeleteI have sent application to your mail please check it.
DeletePlease give this same solution of vb.net code give me. chaudharihardikd@yahoo.com
DeleteI had used ur code but
DeleteHttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
The above line i am getting an error below:
The remote server returned an error: (407) Proxy Authentication Required.
plz give the solution
my mailid:
saikumarneelams@gmail.com
Hi i implemented the above code and used the way2sms api as per code and i gave my username and password credientials and after running the code i got a error server not found 503 like that.And i ran the api link on browser and i got a meesage need to tune up. Plz help me out. Bhupinder.sharma15@gmail.com is my emial id.
DeleteI had used ur code but
DeleteHttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
The above line i am getting an error below:
The remote server returned an error: (503) Proxy Authentication Required.
plz give the solution
my mailid:
ashokkumar.rm@gmail.com
sir,
ReplyDeletepls help me out i m in final year. want to include this code in my project i got 2 days for submission. this code when i executed it gave me an error saying. third line
System.IO.StreamReader respStreamReader = new System.IO.StreamReader(myResp.GetResponseStream());
"The operation has timed out"
please check your fullonsms userid and password is valid or not?
Deletesir,
ReplyDeleteits working nw... no problem at all... thanks a lot.... God bless u.. :)
Hey, how did you solve the problem. I am getting the same problem.
Deleteyou are always welcome
DeleteI am also getting same problem...
Deletemy uid and psw also correct still i get timeout error..
I am getting the same error on this line:
ReplyDeleteHttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
i have posted the total code.please take a notice on above feedback.you will definitely find the solution.
DeleteI have written the same code but on this line: HttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse(); I am getting a error "This operation has timed out". I am not understanding what the problem is.
DeletePlease check your fullonsms userid and password.i think you are entering some invalid credentials.
DeleteI have entered correct UserID and Password sir but still getting error. :( I don't know why. I have checked my userid and pwd. They are correct.
DeleteCan you plz check that if it is working for you or not?? Is there any other website which I can use for sending sms for free?
DeleteYes ofcource it is working.can you please share your code here.
DeleteI am getting the same error on this line:
ReplyDeleteHttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
The operation has timed out...
ReplyDeleteWhat is it????????
This comment has been removed by the author.
Deleteprotected void Button2_Click(object sender, EventArgs e)
Delete{
send("9338307312", "urPassword", "har har bholennath fullon", "9853205712");
}
public void send(string uid, string password, string message, string no)
{
HttpWebRequest myReq =
(HttpWebRequest)WebRequest.Create("http://ubaid.tk/sms/sms.aspx?uid=" + uid + "&pwd=" + password + "&msg=" + message + "&phone=" + no + "&provider=fullonsms");
HttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
System.IO.StreamReader respStreamReader = new System.IO.StreamReader(myResp.GetResponseStream());
string responseString = respStreamReader.ReadToEnd();
respStreamReader.Close();
myResp.Close();
}
It is working fine,But why you are getting such type of error.can you share code here.
sir i have prob in sms send
DeleteI have little bit knowlege of .net
i want to design form that form have client have rights select those pepole which is send sms . Only that people
goes sms. hto slove that prob
sir i have prob in sms send
DeleteI have little bit knowlege of .net
i want to design form that form have client have rights select those pepole which is send sms . Only that people
goes sms. hto slove that prob
string responseString = respStreamReader.ReadToEnd();
Delete// in response String I am getting -4
and we are not able to send the message .plz help me out its urgent
vinit.net12@gmail.com
hello
ReplyDeletei m getting a problem in send function exception is coming the operation is timed out can u pls help can u send me application code on my mail id i save ok crenditial in code bt its not working plsss help me........... send code on my mail id vipuljain1090@gmail.com
Check your mail
DeleteHello sir
Deletei m getting a problem in send function exception is coming the operation is timed out can u pls help can u send me application code on my mail id i save ok crenditial in code bt its not working plsss help me........... send code on my mail id vbzinzala@gamil.com
hI,U R CODE IS WORKING WHEN I AM SENDING MESSAGE ON MY MOBILE NUMBER....BCOZ I HAVE REGISTERED MY MOBILE NUMBER ON FULLONSMS.COM ....BUT WHEN I AM TRYING TO SEND MESSAGE ON MOBILE NUMBER WHICH IS NOT REGISTERED ON FULLONSMS IT WONT SEND...PLZ PLZ HELP ME
ReplyDeleteTHANK YOU
have you provided the credentials of fullonsms registered number.
DeleteDear we are using provider as fullonsms so we must register to fullonsms otherwise we can't.
Deletei am getting error as
DeleteThe remote server returned an error: (503) Server Unavailable.
It Is Giving And Error That Timed Out Can U Solve The Error............
ReplyDeleteits working correctly thanks for giving this for us.i want the source code of ttp://ubaid.tk/sms/sms.aspx please send the source code of the above link my mail id is sathya.qlx@gmail.com
ReplyDelete
ReplyDeletehi,
my code is below and its raises the System.Net.WebException: The operation has timed out
on the code line HttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
whst is the problem please solve this ans send me a mail of the solution and my mail id is sathya.qlx@gmail.com
protected void btnsend_Click(object sender, EventArgs e)
{
send("9999999999", "mypassword", "hi helo", "9856321785");
}
public void send(string uid, string password, string message, string no)
{
HttpWebRequest myReq =
(HttpWebRequest)WebRequest.Create("http://ubaid.tk/sms/sms.aspx?uid=" + uid + "&pwd=" + password + "&msg=" + message + "&phone=" + no + "&provider=fullonsms");
HttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
System.IO.StreamReader respStreamReader = new System.IO.StreamReader(myResp.GetResponseStream());
string responseString = respStreamReader.ReadToEnd();
respStreamReader.Close();
myResp.Close();
}
and i am entering correct credentials of fullonsms though its through the error like
DeleteThe operation has timed out
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Net.WebException: The operation has timed out
Source Error:
Line 21: HttpWebRequest myReq =
Line 22: (HttpWebRequest)WebRequest.Create("http://ubaid.tk/sms/sms.aspx?uid=" + uid + "&pwd=" + password + "&msg=" + message + "&phone=" + no + "&provider=fullonsms");
Line 23: HttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
Line 24: System.IO.StreamReader respStreamReader = new System.IO.StreamReader(myResp.GetResponseStream());
Line 25: string responseString = respStreamReader.ReadToEnd();
Source File: d:\WebSiteexamples\sms.aspx.cs Line: 23
Stack Trace:
[WebException: The operation has timed out]
System.Net.HttpWebRequest.GetResponse() +6117395
sms.send(String uid, String password, String message, String no) in d:\WebSiteexamples\sms.aspx.cs:23
sms.btnsend_Click(Object sender, EventArgs e) in d:\WebSiteexamples\sms.aspx.cs:17
System.Web.UI.WebControls.Button.OnClick(EventArgs e) +118
System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +112
System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +10
System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +13
System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +36
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +5563
Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.272
rply pleaseeeeeeeeeeeeeeeeeeee
Deletei hope this is only for fullon sms users only
DeleteI will definitely work on that and post it soon using different provider.Thanks
Deletehey i need to submit urgently,,,plz help me... post the code here
Deleteforgot everything...!U can't send the free sms using this code or any other free code...!It's works nice only within 2 day...After that u can't bro...
Deletecheck your mail
DeleteHi i am Still get that time out exeception..
DeleteMy Fullonsms credentials are correct
it is working....thx a lot dear!!!!!!!!!!!!!!!!!!!!!!...
ReplyDeleteIt is giving me the same error as other 'The operation TimeOut'
ReplyDeletecan u plz share solution to this on my id tabhosale89@gmail.com
ReplyDeleteCheck Your Mail
DeleteI am trying the code in local host ,, while connecting with the Internet.. But no sms delivered yet ,, and there is no error too ,,
ReplyDeleteWhat is the solution ?
in class file :
ReplyDeletepublic static void sendsms(string uid, string password, string message, string no)
{
try
{
HttpWebRequest myReq = (HttpWebRequest)WebRequest.Create("http://ubaid.tk/sms/sms.aspx?uid=" + uid + "&pwd=" + password + "&msg=" + message + "&phone=" + no + "&provider=fullonsms");
HttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
System.IO.StreamReader respStreamReader = new System.IO.StreamReader(myResp.GetResponseStream());
string responseString = respStreamReader.ReadToEnd();
respStreamReader.Close();
myResp.Close();
}
catch (Exception ){}
protected void Button1_Click(object sender, EventArgs e)
{
send.sendsms(txt_num.Text, "ankasala" ,txt_msg.Text, txt_num.Text);
msgtatus.Text = "msg sent successfully";
}
but im not getting any message in mobile and there is no errors in the programme also
and
helo mohanthy sir will u please send me code files to ankasala.hari8055@gmail.com. its very urgent for me
ReplyDeletethnkyou
please check your mail
Deletethanks for the code and with this code also iam not getting any message to mobile and at the same time iam not getting any error in the program and for running it is taking more time nearly 2 minitues and my internet connection id good please help me
Deletei am getting the follwing error,it not solve..please send some another code...
ReplyDeleteThe operation has timed out
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Net.WebException: The operation has timed out
Sir
ReplyDeleteI am trying to send and receive sms application. Have to get back the user details and updates in my database..
I tried the code but it is showing the exception "Server not Responding"
Please help me regarding this as I am supposed to show demo on Tuesday
Sir, I'm also getting the same err... The operation has timed out. can you pls help me....
ReplyDeleteMy mail ID is thouseefsulthan@gmail.com
i got this error only
ReplyDeleteplease can you help me
Error 2 Could not load file or assembly 'System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. Strong name signature could not be verified. The assembly may have been tampered with, or it was delay signed but not fully signed with the correct private key. (Exception from HRESULT: 0x80131045)
Sir,i got this exception The operation has timed out. can you pls help me....
ReplyDeleteMy mail ID is surezitd@yahoo.in
System.Net.WebException was unhandled
ReplyDeleteMessage="The operation has timed out"
Source="System"
StackTrace:
at System.Net.HttpWebRequest.GetResponse()
at sms.Form1.send(String uid, String password, String message, String no) in C:\Users\xrih\Documents\Visual Studio 2008\Projects\sms\sms\Form1.cs:line 45
at sms.Form1.button1_Click(Object sender, EventArgs e) in C:\Users\xrih\Documents\Visual Studio 2008\Projects\sms\sms\Form1.cs:line 68
at System.Windows.Forms.Control.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ButtonBase.WndProc(Message& m)
at System.Windows.Forms.Button.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(Int32 dwComponentID, Int32 reason, Int32 pvLoopData)
at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
at sms.Program.Main() in C:\Users\xrih\Documents\Visual Studio 2008\Projects\sms\sms\Program.cs:line 18
at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()
InnerException:
my email id is :srinivashvenkataramu@gmail.com
ReplyDeletePlease send me the application
hi .. its working ,, some times its giving operation timeout error .. is there any kind of balance reduction occurs from the account balance of the mobile number that i am using to log in into fullon sms website ??
ReplyDeletehi.. Plz send the code for me..
Deletemy id is:-
mhndryadav05@gmail.com
can u please mail me the coding in Vb.net
ReplyDeleteor any other coding....
please send me full coding..
mail id is: mptsece@gmail.com
Thanks in advance..
Please help me,my error is that(The remote server returned an error: (503) Server Unavailable.)
Deletewhy occur this ????
Does this code only work for users in India?
ReplyDeletehey i have taken your code but i dont know where should i make changes in code so that i can run....
ReplyDeleteplzzzzzz help me out its very urgent. iwant to use this in my project.
plzzzzz mail me -raj8joshi@gmail.com
plzzzz mail me.
super ..it's working....awesome...i tried more than one week for this coding....thank u alot...but i'm looking using sms gateway technology too....
ReplyDelete
Deletehi .. its working ,, this code giving operation timeout error .. i am using to log in into fullon sms website ??
send me the solution for this problem pls
my email id :ramkumar2794@gmail.com
sir ,
ReplyDeletehi .. its working ,, this code giving operation timeout error .. i am using to log in into fullon sms website ??
send me the solution for this problem pls
my email id :ramkumar2794@gmail.com
hello sir , i m getting error i.e.
ReplyDeleteThe remote server returned an error: (403) Forbidden.
plz help me
i m getting a problem in send function exception is coming the operation is timed out can u pls help can u send me application code on my mail id i save ok crenditial in code bt its not working plsss help me........... send code on my mail id vbzinzala@gmail.com
ReplyDeletehi boss i need full project to rar file plz attach here sir..........
ReplyDeletePlease advice is http://fullonsms.com/login.php?uid= link correct............. I am not getting any output and no error to.........
ReplyDeletehi i m not getting output pls send complete code nik.rtd@gmail.com
ReplyDeletesir please mail me meghanair.gm@gmail.com
ReplyDeletesir i have prblm in senting sms in vb.net pls help me
ReplyDeleteI am getting an error here:
ReplyDeleteHttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
The remote server returned an error: (503) Server unavailable.
There is no problem with my username or password or my internet connection.
Please help! :(
email id: vibhuti.bansal05@gmail.com
cvcvc
ReplyDeletethe remote server returned an error (503) server unavailable. this exception appear when send a message
ReplyDeleteI am getting an error when i run the code
ReplyDeleteHttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
The remote server returned an error: (503) Server unavailable.
There is no problem with my username or password or my internet connection.
i checked my login
The remote server returned an error: (503) Server Unavailable. plz provide working source my email id is shivam6373@gmail.com
ReplyDeleteI am getting an error when i run the code
ReplyDeleteHttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
The remote server returned an error: (503) Server unavailable.
There is no problem with my username or password or my internet connection.
i checked my login
Hi ,
ReplyDeleteI tried your code but i get error when i run the code.
HttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
The remote server returned an error: (503) Server unavailable.
There is no problem with my username or password or my internet connection.
My Mail id : Marivinay@gmail.com
Thanks
G Mariappan
Hi,
ReplyDeleteI tried your code but it gives error as:
(503) Server unavailable.
HttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
my mail id: anirudhamahadik1@gmail.com
Hi
ReplyDeleteI'm getting (503) Server Unavailable
when im trying to open http://ubaid.tk/sms/sms.aspx?
im getting a message
We needed a tune-up.
We're doing a bit of site maintenance that should only last a few hours.
Go grab a new movie to watch, and we should be back by the time you are!
please mail me the solution sirnagoutham@gmail.com
hi ...
ReplyDeletedear sir I m getting error in line no 3 The remote server returned an error: (404) Not Found.
in code HttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
Sir.. I have a problem the Sending the sms plz send the code..
ReplyDeletemhndryadav05@gmail.com
Hi,
ReplyDeleteI tried your code but it gives error as:
(503) Server unavailable.
HttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
my mail id is vinaygrover54@gmail.com
Hi Sir,
ReplyDeleteI am getting 503 error , please send the code , munnamgi.chandra@gmail.com
Hi,
ReplyDeleteI got this error
The remote server returned an error: (503) Server Unavailable.
plz help me my email-id:-bhaveshn47@gmail.com
mail id: harishpbansode16@gmail.com
ReplyDeleteplz send me project
regards Harish
I used you code but it shoes an error as "The remote server returned an error: (503) Server Unavailable." plz fix my error soon. i need to complete my project
ReplyDeleteI used you code but it shoes an error as "The remote server returned an error: (503) Server Unavailable." plz fix my error soon. i need to complete my project. my mail Id is kdevanmca@gmail.com send me this project plz its urgent for me
ReplyDeletesir
ReplyDeleteI got this error
The remote server returned an error: (503) Server Unavailable.
plz help me my Email id:-rsnsakthi@gmail.com
Reply
tnx
hii ... i got an error....
ReplyDeletepls help me..
The remote server returned an error: (503) Server Unavailable.
mailid:kavithasmilemca@gmail.com
Hello Sir,
ReplyDeleteI m getting the below error ,
The remote server returned an error: (503) Server Unavailable.
Please help me out here to solve this my Email Address is
anush.bly07@gmail.com
I will look fwd your support !!
Hello Sir,
ReplyDeleteI m getting the below error ,
The remote server returned an error: (503) Server Unavailable.
Please help me out here to solve this my Email Address is
sateeshkumardandhyala@gmail.com
I will look fwd your support !!
I hope there is a problem in http://ubaid.tk/sms/sms.aspx?uid= ,i will post different process shortly.And also send that code to all of you who has provided your mailid.
ReplyDeleteThanks
Sir plzzz send me dis full code...plzzz...
ReplyDeletemy email id is : adil.pattewale007@gmail.com
Sir...plzzz send me the full code of dis...plzzz replay me sir..Thank you..
ReplyDeletePlzzzz send me full code...adil.pattewale007@gmail.com
ReplyDeleteI am getting an error here:
ReplyDeleteHttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
The remote server returned an error: (503) Server unavailable.
There is no problem with my username or password or my internet connection.
Hello Sir,
ReplyDeleteI m getting the below error ,
The remote server returned an error: (503) Server Unavailable.
i need ur code touseefwasil@yahoo.com
ReplyDeleteHello Sir
ReplyDeleteThis is Bency..
this is my code
protected void Button1_Click(object sender, EventArgs e)
{
send("9626335313", "mypassword", "Hai fullon", "7708678266");
}
public void send(string uid, string password, string message, string no)
{
HttpWebRequest myReq = (HttpWebRequest)WebRequest.Create("http://ubaid.tk/sms/sms.aspx?uid=" + uid + "&pwd=" + password + "&msg=" + message + "&phone=" + no + "&provider=fullonsms");
HttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
System.IO.StreamReader respStreamReader = new System.IO.StreamReader(myResp.GetResponseStream());
string responseString = respStreamReader.ReadToEnd();
respStreamReader.Close();
myResp.Close();
}
But Showing error like this
The remote server returned an error: (503) Server Unavailable.
Please help me.. Its urgent
I need ur sloved code pls send my mail id
ReplyDeletebencyarulmozhinisida@gmail.com
When i run that code,
ReplyDeleteIts Showing me error like this
The remote server returned an error: (503) Server Unavailable.
plz send the working code , on these mail is : sumeethelchal@gmail.com
Thanks.
pls mail full source code without any error , this is my email id jameel.ahamed80@gmail.com
ReplyDeletemy mail id is monikamandal88@gmail.com
ReplyDelete