Dear Friends,
Now i have been making smsgateway application with asp.net language,
this application using a hardware box from the vendor but it very full customize
with asp.net language, for send one sms message i just type this code
Response.Redirect("http:\\myserver\sendsms.cgi?param=message")
i want to send 5 sms in one times. I tried to loop the response.redirect
for(int x = 0; x < 5; x++)
{
Response.Redirect("http:\\myserver\sendsms.cgi?param=message" + x.ToString())
}
buy it's fail, only the last of loop executed. It's possible to loop response.redirect?
or maybe you have any suggestion to solve this problem.
Regards,
Rudianto
Loading
Sunjib MohnatyPosted Jul 10, 2009, 2:25 AM
Find out if the CGI program Detect Multiple SMS with any Separator
OR
Take a bool variable and go for HttpRequest with Sync and once you have a return value. go foe Next Message.
Regards
Sunjib Mohanty
ArshadPosted Jul 9, 2009, 12:39 PM
Regards
Arshad.