Thursday, April 18

Send free sms using asp.net source code

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();
    }
Thanks Shibashish Mohanty
 

136 comments:

  1. This is my latest post and it is working fine

    ReplyDelete
    Replies
    1. ya...
      i try ur code and its work properly....
      Thankxxxxxxxxxxxxxxxxxxxxxxxxxxx

      Delete
    2. operation has timed out issue was given what can i do please help me 30vengadesh@gmail.com

      Delete
    3. operation has timed out,,,,plz help me.....

      Delete
    4. hi shibashish,

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

      Delete
    5. Please check your Internet connection..

      Delete
    6. operation Timed Out....Plz help me......

      Delete
    7. This comment has been removed by the author.

      Delete
    8. Can any body send me the code its giving a error server not found.
      can any body help me.
      my email- lohdhiru@hmail.com

      Delete
    9. hye dhiraj plz check your email id

      Delete
    10. oh its lohdhiru@gmail.com

      Delete
    11. Can any one help me to get vb code for the abov....ragards absolaris@gmail.com

      Delete
  2. If you need the application then please send your mailid to my mobile.Thanks for viewing.keep coding

    ReplyDelete
    Replies
    1. Hi this is tarun my email id is tarundev92@gmail.com

      Delete
    2. it is giving error "The type or namespace name 'HttpWebRequest' could not be found (are you missing a using directive or an assembly reference?)"
      wat should be done??

      Delete
    3. Please import namespce as using System.Net;

      Delete
    4. Here is my total code


      using 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();
      }
      }

      Delete
    5. Please help me i cant get the out put please help me ...

      Delete
    6. my email id: 30vengadesh@gmail.com

      Delete
    7. mail id: anusharajeev01@gmail.com,,,
      plz send urgently....regards anusha

      Delete
    8. mailid:ch.uday415@gmail.com Please send the code i am getting The operation has timed out exception

      Delete
    9. mail id: harishpbansode16@gmail.com
      plz send urgently
      regards Harish

      Delete

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

    ReplyDelete
    Replies
    1. Way2sms has no more providing this facility to user.Please use fullonsms in place of way2sms.Thanks

      Delete
    2. sir i have issue of :> The operation has timed out
      please help me My email id 30vengadesh@gmail.com

      Delete
    3. Hey, how did you solve the problem. I am getting the same problem.

      Delete
    4. I have sent application to your mail please check it.

      Delete
    5. Please give this same solution of vb.net code give me. chaudharihardikd@yahoo.com

      Delete
    6. I had used ur code but
      HttpWebResponse 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

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

      Delete
    8. I had used ur code but
      HttpWebResponse 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

      Delete
  4. sir,
    pls 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"

    ReplyDelete
    Replies
    1. please check your fullonsms userid and password is valid or not?

      Delete
  5. sir,
    its working nw... no problem at all... thanks a lot.... God bless u.. :)

    ReplyDelete
    Replies
    1. Hey, how did you solve the problem. I am getting the same problem.

      Delete
    2. you are always welcome

      Delete
    3. I am also getting same problem...
      my uid and psw also correct still i get timeout error..

      Delete
  6. I am getting the same error on this line:
    HttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();

    ReplyDelete
    Replies
    1. i have posted the total code.please take a notice on above feedback.you will definitely find the solution.

      Delete
    2. I 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.

      Delete
    3. Please check your fullonsms userid and password.i think you are entering some invalid credentials.

      Delete
    4. I 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.

      Delete
    5. Can 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?

      Delete
    6. Yes ofcource it is working.can you please share your code here.

      Delete
  7. I am getting the same error on this line:
    HttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();

    ReplyDelete
  8. The operation has timed out...
    What is it????????

    ReplyDelete
    Replies
    1. This comment has been removed by the author.

      Delete
    2. protected void Button2_Click(object sender, EventArgs e)
      {
      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.

      Delete
    3. sir i have prob in sms send
      I 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

      Delete
    4. sir i have prob in sms send
      I 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

      Delete
    5. string responseString = respStreamReader.ReadToEnd();

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

      Delete
  9. hello


    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 vipuljain1090@gmail.com

    ReplyDelete
    Replies
    1. Hello sir

      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@gamil.com

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

    THANK YOU

    ReplyDelete
    Replies
    1. have you provided the credentials of fullonsms registered number.

      Delete
    2. Dear we are using provider as fullonsms so we must register to fullonsms otherwise we can't.

      Delete
    3. i am getting error as
      The remote server returned an error: (503) Server Unavailable.

      Delete
  11. It Is Giving And Error That Timed Out Can U Solve The Error............

    ReplyDelete
  12. its 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

  13. hi,
    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();
    }

    ReplyDelete
    Replies
    1. and i am entering correct credentials of fullonsms though its through the error like
      The 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

      Delete
    2. rply pleaseeeeeeeeeeeeeeeeeeee

      Delete
    3. i hope this is only for fullon sms users only

      Delete
    4. I will definitely work on that and post it soon using different provider.Thanks

      Delete
    5. hey i need to submit urgently,,,plz help me... post the code here

      Delete
    6. forgot 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...

      Delete
    7. Hi i am Still get that time out exeception..
      My Fullonsms credentials are correct

      Delete
  14. it is working....thx a lot dear!!!!!!!!!!!!!!!!!!!!!!...

    ReplyDelete
  15. It is giving me the same error as other 'The operation TimeOut'

    ReplyDelete
  16. can u plz share solution to this on my id tabhosale89@gmail.com

    ReplyDelete
  17. I am trying the code in local host ,, while connecting with the Internet.. But no sms delivered yet ,, and there is no error too ,,
    What is the solution ?

    ReplyDelete
  18. in class file :

    public 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

    ReplyDelete
  19. helo mohanthy sir will u please send me code files to ankasala.hari8055@gmail.com. its very urgent for me
    thnkyou

    ReplyDelete
    Replies
    1. thanks 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

      Delete
  20. i am getting the follwing error,it not solve..please send some another code...

    The 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

    ReplyDelete
  21. Sir

    I 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

    ReplyDelete
  22. Sir, I'm also getting the same err... The operation has timed out. can you pls help me....
    My mail ID is thouseefsulthan@gmail.com

    ReplyDelete
  23. i got this error only
    please 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)

    ReplyDelete
  24. Sir,i got this exception The operation has timed out. can you pls help me....
    My mail ID is surezitd@yahoo.in

    ReplyDelete
  25. System.Net.WebException was unhandled
    Message="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:

    ReplyDelete
  26. my email id is :srinivashvenkataramu@gmail.com

    Please send me the application

    ReplyDelete
  27. 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 ??

    ReplyDelete
    Replies
    1. hi.. Plz send the code for me..
      my id is:-
      mhndryadav05@gmail.com

      Delete
  28. can u please mail me the coding in Vb.net
    or any other coding....
    please send me full coding..
    mail id is: mptsece@gmail.com
    Thanks in advance..

    ReplyDelete
    Replies
    1. Please help me,my error is that(The remote server returned an error: (503) Server Unavailable.)
      why occur this ????

      Delete
  29. Does this code only work for users in India?

    ReplyDelete
  30. hey i have taken your code but i dont know where should i make changes in code so that i can run....
    plzzzzzz help me out its very urgent. iwant to use this in my project.
    plzzzzz mail me -raj8joshi@gmail.com
    plzzzz mail me.

    ReplyDelete
  31. 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
    Replies


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

      Delete
  32. sir ,

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

    ReplyDelete
  33. hello sir , i m getting error i.e.
    The remote server returned an error: (403) Forbidden.
    plz help me

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

    ReplyDelete
  35. hi boss i need full project to rar file plz attach here sir..........

    ReplyDelete
  36. Please advice is http://fullonsms.com/login.php?uid= link correct............. I am not getting any output and no error to.........

    ReplyDelete
  37. hi i m not getting output pls send complete code nik.rtd@gmail.com

    ReplyDelete
  38. sir please mail me meghanair.gm@gmail.com

    ReplyDelete
  39. sir i have prblm in senting sms in vb.net pls help me

    ReplyDelete
  40. I am getting an error here:
    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.

    Please help! :(
    email id: vibhuti.bansal05@gmail.com

    ReplyDelete
  41. the remote server returned an error (503) server unavailable. this exception appear when send a message

    ReplyDelete
  42. I am getting an 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.
    i checked my login

    ReplyDelete
  43. The remote server returned an error: (503) Server Unavailable. plz provide working source my email id is shivam6373@gmail.com

    ReplyDelete
  44. I am getting an 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.
    i checked my login

    ReplyDelete
  45. Hi ,
    I 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

    ReplyDelete
  46. Hi,
    I tried your code but it gives error as:
    (503) Server unavailable.
    HttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
    my mail id: anirudhamahadik1@gmail.com

    ReplyDelete
  47. Hi
    I'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

    ReplyDelete
  48. hi ...
    dear 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();

    ReplyDelete
  49. Sir.. I have a problem the Sending the sms plz send the code..
    mhndryadav05@gmail.com

    ReplyDelete
  50. Hi,
    I tried your code but it gives error as:
    (503) Server unavailable.
    HttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();

    my mail id is vinaygrover54@gmail.com

    ReplyDelete
  51. Hi Sir,
    I am getting 503 error , please send the code , munnamgi.chandra@gmail.com

    ReplyDelete
  52. Hi,
    I got this error
    The remote server returned an error: (503) Server Unavailable.
    plz help me my email-id:-bhaveshn47@gmail.com

    ReplyDelete
  53. mail id: harishpbansode16@gmail.com
    plz send me project
    regards Harish

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

    ReplyDelete
  55. 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. my mail Id is kdevanmca@gmail.com send me this project plz its urgent for me

    ReplyDelete
  56. sir
    I got this error
    The remote server returned an error: (503) Server Unavailable.
    plz help me my Email id:-rsnsakthi@gmail.com
    Reply
    tnx

    ReplyDelete
  57. hii ... i got an error....
    pls help me..
    The remote server returned an error: (503) Server Unavailable.
    mailid:kavithasmilemca@gmail.com

    ReplyDelete
  58. Hello Sir,
    I 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 !!

    ReplyDelete
  59. Hello Sir,
    I 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 !!

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

    Thanks

    ReplyDelete
  61. Sir plzzz send me dis full code...plzzz...
    my email id is : adil.pattewale007@gmail.com

    ReplyDelete
  62. Sir...plzzz send me the full code of dis...plzzz replay me sir..Thank you..

    ReplyDelete
  63. Plzzzz send me full code...adil.pattewale007@gmail.com

    ReplyDelete
  64. I am getting an error here:
    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.

    ReplyDelete
  65. Hello Sir,
    I m getting the below error ,
    The remote server returned an error: (503) Server Unavailable.

    ReplyDelete
  66. i need ur code touseefwasil@yahoo.com

    ReplyDelete
  67. Hello Sir

    This 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

    ReplyDelete
  68. I need ur sloved code pls send my mail id
    bencyarulmozhinisida@gmail.com

    ReplyDelete
  69. When i run that code,
    Its 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.

    ReplyDelete
  70. pls mail full source code without any error , this is my email id jameel.ahamed80@gmail.com

    ReplyDelete

Please don't spam, spam comments is not allowed here.

.

ShibashishMnty
shibashish mohanty