Click here to Skip to main content
15,918,471 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Creating Animations Pin
Shog916-Aug-08 16:27
sitebuilderShog916-Aug-08 16:27 
QuestionSending a form to your email address Pin
Christopher Clarke16-Aug-08 11:34
Christopher Clarke16-Aug-08 11:34 
AnswerRe: Sending a form to your email address Pin
Manas Bhardwaj16-Aug-08 11:52
professionalManas Bhardwaj16-Aug-08 11:52 
QuestionRe: Sending a form to your email address Pin
Christopher Clarke16-Aug-08 12:02
Christopher Clarke16-Aug-08 12:02 
AnswerRe: Sending a form to your email address Pin
Manas Bhardwaj17-Aug-08 0:16
professionalManas Bhardwaj17-Aug-08 0:16 
GeneralRe: Sending a form to your email address Pin
Christopher Clarke17-Aug-08 12:42
Christopher Clarke17-Aug-08 12:42 
GeneralRe: Sending a form to your email address Pin
wizard 20220-Aug-08 17:46
wizard 20220-Aug-08 17:46 
AnswerRe: Sending a form to your email address Pin
naresh thakur4-Sep-08 3:13
naresh thakur4-Sep-08 3:13 
u may use this as we send sms we will send email

private void SendMessage(string p_sPhoneNumber, string p_sMessage, string p_sUsername, string p_sPasskey) {
SMSService.SMSMessagingprocessService smsService = new SMSService.SMSMessagingprocessService();
string sCountryCodes;
try {
if (smsService.ValidPhoneNumber(p_sPhoneNumber)) {
bool result = smsService.SendMessage(p_sPhoneNumber, p_sMessage, p_sUsername, p_sPasskey);
if ((result == true)) {
MsgBox("The message was sent", MsgBoxStyle.Information, "SMS Messaging");
}
else {
MsgBox("The message could not be sent", MsgBoxStyle.Information, "SMS Messaging");
}
}
}
catch (SoapException ex) {
MsgBox(("An exception occured. " + ex.Detail.InnerText), MsgBoxStyle.Critical, "SMS Messaging");
}
}



SmsMessage sm= new SmsMessage("destination phone number","messagetext");
sm.RequestDeliveryReport = true;
sm.Send();
QuestionCultureInfo - Arabic Currency formatting Pin
Blumen16-Aug-08 0:06
Blumen16-Aug-08 0:06 
AnswerRe: CultureInfo - Arabic Currency formatting [modified] Pin
Jörgen Andersson16-Aug-08 10:42
professionalJörgen Andersson16-Aug-08 10:42 
GeneralRe: CultureInfo - Arabic Currency formatting Pin
Blumen16-Aug-08 18:27
Blumen16-Aug-08 18:27 
QuestionJavaScript change individual characters to upper case Pin
jonatec15-Aug-08 0:04
jonatec15-Aug-08 0:04 
AnswerRe: JavaScript change individual characters to upper case Pin
astanton197815-Aug-08 7:29
astanton197815-Aug-08 7:29 
GeneralRe: JavaScript change individual characters to upper case Pin
Perspx15-Aug-08 10:58
Perspx15-Aug-08 10:58 
GeneralRe: JavaScript change individual characters to upper case Pin
jonatec18-Aug-08 0:19
jonatec18-Aug-08 0:19 
QuestionDevelope Web service Pin
Hemant Thaker14-Aug-08 21:45
Hemant Thaker14-Aug-08 21:45 
AnswerRe: Develope Web service[Ignore Repost] Pin
Manas Bhardwaj15-Aug-08 1:43
professionalManas Bhardwaj15-Aug-08 1:43 
QuestionCustom data types in web services and web references Pin
Yellowseed14-Aug-08 11:58
Yellowseed14-Aug-08 11:58 
AnswerRe: Custom data types in web services and web references Pin
Shog914-Aug-08 14:35
sitebuilderShog914-Aug-08 14:35 
GeneralRe: Custom data types in web services and web references Pin
Yellowseed15-Aug-08 3:58
Yellowseed15-Aug-08 3:58 
QuestionRemeber input elements when changing page Pin
William Engberts14-Aug-08 3:53
William Engberts14-Aug-08 3:53 
AnswerRe: Remeber input elements when changing page Pin
Mohammad Dayyan15-Aug-08 11:20
Mohammad Dayyan15-Aug-08 11:20 
QuestionAJAX : Retrieve Specific Tag by id & count tag from external html Pin
Lu5ck14-Aug-08 3:24
Lu5ck14-Aug-08 3:24 
AnswerRe: AJAX : Retrieve Specific Tag by id & count tag from external html Pin
SamRST14-Aug-08 3:52
SamRST14-Aug-08 3:52 
AnswerRe: AJAX : Retrieve Specific Tag by id & count tag from external html Pin
Shog914-Aug-08 9:41
sitebuilderShog914-Aug-08 9:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.