本文介绍了给我发送用于向手机发送短信的代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
向我发送用于将短信发送到手机的代码
send me the code for sending sms to mobile
推荐答案
string senderusername = "xxxxx";
string senderpassword = "xxxx";
string senderid = "xxx";
string sURL;
StreamReader objReader;
sURL = "service provider url with username,password,senderid,messagetext,tomobile and others passed as querysrring";
WebRequest wrGETURL;
wrGETURL = WebRequest.Create(sURL);
try
{
Stream objStream;
objStream = wrGETURL.GetResponse().GetResponseStream();
objReader = new StreamReader(objStream);
//here you get the response - sent success or fail
objReader.Close();
}
catch (Exception ex)
{
ex.ToString();
}
希望这能使您清除.
欢呼声
Hope this clears you.
cheers
这篇关于给我发送用于向手机发送短信的代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!