[Message Deleted]
-
[Message Deleted]
-
[Message Deleted]
This looks kind of trivial. Do you not know any ASP.NET ? Looks like you can send an SMS by passing it on the URL to this site. So, the first part is just building a string, use a stringbuilder for that. The second part, you just do a send and see if the response is I think the classes are called HTTPRequest and HTTPResponse. This is not ASP.NET code, it's just C# code that makes a HTTP request. Doing an ASP.NET page that takes the details to post, is more than can be done in a forum reply, and also trivial.
Christian Graus Please read this if you don't understand the answer I've given you "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
-
This looks kind of trivial. Do you not know any ASP.NET ? Looks like you can send an SMS by passing it on the URL to this site. So, the first part is just building a string, use a stringbuilder for that. The second part, you just do a send and see if the response is I think the classes are called HTTPRequest and HTTPResponse. This is not ASP.NET code, it's just C# code that makes a HTTP request. Doing an ASP.NET page that takes the details to post, is more than can be done in a forum reply, and also trivial.
Christian Graus Please read this if you don't understand the answer I've given you "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
thanks... but i have problem with httprequest or httpresponse its not working.. Error 8 'System.Web.HttpResponse' is a 'type' but is used like a 'variable'
-
thanks... but i have problem with httprequest or httpresponse its not working.. Error 8 'System.Web.HttpResponse' is a 'type' but is used like a 'variable'
I guess if you posted the code, I would be able to correct it.
Christian Graus Please read this if you don't understand the answer I've given you "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
-
I guess if you posted the code, I would be able to correct it.
Christian Graus Please read this if you don't understand the answer I've given you "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
// the problem is her... gv_reply = httpRequest(gv_url); if (gv_reply == "") { ' If the reply contains the tag <succes> the SMS has been sent. Response.Write "The message has been sent. Server response: " & gv_reply } else ' If not, there has been an error. Response.Write "The message has NOT been sent. Server response: " & gv_reply //To here..
-
// the problem is her... gv_reply = httpRequest(gv_url); if (gv_reply == "") { ' If the reply contains the tag <succes> the SMS has been sent. Response.Write "The message has been sent. Server response: " & gv_reply } else ' If not, there has been an error. Response.Write "The message has NOT been sent. Server response: " & gv_reply //To here..
Burim Rama wrote:
gv_reply = httpRequest(gv_url);
What is httpRequest ? What made you think this would work ? Try this: http://en.csharp-online.net/HTTP_Post[^]
Christian Graus Please read this if you don't understand the answer I've given you "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
-
Burim Rama wrote:
gv_reply = httpRequest(gv_url);
What is httpRequest ? What made you think this would work ? Try this: http://en.csharp-online.net/HTTP_Post[^]
Christian Graus Please read this if you don't understand the answer I've given you "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
i need to se if my rquest from the page is succses like a posted the first topic in php .. thanks christian.
-
i need to se if my rquest from the page is succses like a posted the first topic in php .. thanks christian.
That's why you do the post of the data and grab the response. Here is the code from my credit card class, which uses the methods you need to use. string strPost = transaction.ToString(); StreamWriter myWriter = null; HttpWebRequest objRequest = (HttpWebRequest)WebRequest.Create((transaction.TestRequest) ? testurl : url); objRequest.AuthenticationLevel = System.Net.Security.AuthenticationLevel.MutualAuthRequired; objRequest.Method = "POST"; objRequest.ContentLength = strPost.Length; objRequest.ContentType = "application/x-www-form-urlencoded"; try { myWriter = new StreamWriter(objRequest.GetRequestStream()); myWriter.Write(strPost); } catch (Exception e) { return null; } finally { if (myWriter != null) myWriter.Close(); } string result = string.Empty; HttpWebResponse objResponse = (HttpWebResponse)objRequest.GetResponse(); using (StreamReader sr = new StreamReader(objResponse.GetResponseStream())) { result = sr.ReadToEnd(); // Close and clean up the StreamReader sr.Close(); } AuthorizeResponse response = new AuthorizeResponse(result); return response;
Christian Graus Please read this if you don't understand the answer I've given you "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )