Well many people asked how to implement the Way2Sms Api and Code and hence I provide them the Code.
DEMO :
Instructions : Enter Your Way2Sms Mobile Number , Way2Sms Password , The person you want to send and the Message . Message will be sent from your Way2Sms Account
I Have Used Free Hosting provided to me by applied Innovations . For Quick Sms You can visit my link (without copyrights) Over HERE . Thanking Applied Innovations For providing free Hosting Space .
Source Code :DOWNLOAD IT FROM HERE
Steps To Use It In Your Application :
Step 1 : In Your Default.aspx Page Add This HTML code
Step 2: Add a asp:Button in the in your application also add a click event which is going to fired u when u click the button . The Code Is :
Step 3 :Now In the Code-Behind of this file that is Default.aspx.cs we add the event of button . Which loads the Api In the Iframe and the message gets sent . We Are using ubaid.tk servers for better performance .... The Code-behind Code :
Download The Code and Enjoy........................... Cheers
DEMO :
Instructions : Enter Your Way2Sms Mobile Number , Way2Sms Password , The person you want to send and the Message . Message will be sent from your Way2Sms Account
I Have Used Free Hosting provided to me by applied Innovations . For Quick Sms You can visit my link (without copyrights) Over HERE . Thanking Applied Innovations For providing free Hosting Space .
Source Code :DOWNLOAD IT FROM HERE
Steps To Use It In Your Application :
Step 1 : In Your Default.aspx Page Add This HTML code
<iframe runat="server" style="visibility:hidden;" id="sms" ></iframe>
Step 2: Add a asp:Button in the in your application also add a click event which is going to fired u when u click the button . The Code Is :
<asp:Button ID="Button1" runat="server" onclick="Button1_Click"
Text="Send Sms" />
Step 3 :Now In the Code-Behind of this file that is Default.aspx.cs we add the event of button . Which loads the Api In the Iframe and the message gets sent . We Are using ubaid.tk servers for better performance .... The Code-behind Code :
protected void Button1_Click(object sender, EventArgs e)
{
sms.Attributes.Add("Src", "http://ubaid.tk/sms/sms.aspx?uid=ur_mobile_no&pwd=ur_mobile_password&msg=ur_message&phone=to_whom_u_wannasend_to&provider=way2sms");
}
Download The Code and Enjoy........................... Cheers