How to Send SMS in Asp.Net

  1. public void sms()  
  2. {  
  3.    string uname = "####123";  
  4.    string pass = "####f543";  
  5.    string send = "PCSCRAFT";  
  6.    // string dest = ddlselectid.Text;  
  7.    string dest = txtbomile.Text;  
  8.    //string msg = txtMessage.Text;  
  9.    // string msg = "Thank your for completion of registration. Registered ID: " + txtbomile.Text.Trim() + " Kindly us registration ID for further process";  
  10.    string msg = "Thank your for completion of registration. Registered ID: " + lblid.Text.Trim() + " Kindly us registration ID for further process";  
  11.    string schtm = System.DateTime.Now.ToString("yyyy-MM-dd HH:mm");  
  12.    //string priority="1";  
  13.    //string schtm = System.DateTime.Now.ToString("yyyy-MM-dd HH:mm");  
  14.    string sURL;  
  15.    StreamReader objReader;  
  16.    //http://103.247.98.91/PRPAPI/PrpApiSendMsg.aspx?uname=20120003&pass=123456&send=PROMO&dest=9835613280&msg=hi&priority=1&schtm=2013-04-14 11:22  
  17.    sURL = "http://103.247.98.91/API/SendMsg.aspx?uname=" + uname + "&pass=" + pass + "&send=" + send + "&dest=" + dest + "&msg=" + msg + "&priority=1&schtm=" + schtm;  
  18.    //http://103.247.98.91/PRPAPI/PrpApiSendMsg.aspx?uname=20120003&pass=123456&send=PROMO&dest=9835613280&msg=hi&priority=1&schtm=2013-04-14 11:22  
  19.    // sURL = "http://110.234.113.233/SendSMS/sendmsg.php?   uname=" + uname + "&pass=" + pass + "&send=" + send + "&dest=" + dest + "&msg=" + msg;  
  20.    WebRequest wrGETURL;  
  21.    wrGETURL = WebRequest.Create(sURL);  
  22.    try  
  23.    {  
  24.       Stream objStream;  
  25.       objStream = wrGETURL.GetResponse().GetResponseStream();  
  26.       objReader = new StreamReader(objStream);  
  27.       objReader.Close();  
  28.       // Response.Write("Done");  
  29.    }  
  30.    catch (Exception ex)  
  31.    {  
  32.       ex.ToString();  
  33.    }  
  34. }