Guest
2007-07-18T07:17:55Z
Dear Sir/Madam,

I am vidhyapriya,Software Engineer in India.I am sending SMS from my mobile through intelli software,but the query string what i am getting is blank.I am getting messaging status as H-Forwarding to HTTP.I tried trail version to Receive message in sms gateway.I sent message to +447786202820 from my mob.

This is my query string,
str = Request.QueryString["from"];
str1 = Request.QueryString["text"];

This is my Address,
http://mydomain.com/test.aspx 

I gave this address in my Login Preferences ->Forwarding->Address

Row is inserted in my database but the values are Blank.whats the problem,am i doing anything wrong.Please help me.
Support
2007-07-18T09:44:01Z
HTTP forwarding uses HTTP POST, the following code will retrieve the values:

str = Request.Form["from"];
str1 = Request.Form["text"];

or, alternatively

str = Request["from"];
str1 = Request["text"];

Guest
2007-07-18T10:13:25Z
Thanks for your reply Sir,

HTTP post is done but i am getting status as H-Forwarded by HTTP.

I used as you said,
str=request.form["from"]
str1=request.form["text"]

But the str and str1 values contain NULL value.

Guest
2007-07-18T11:28:10Z
Sir,

Thanks for all your reply.
Still I am getting the same problem.

I used as you said,
str=request.form["from"]
str1=request.form["text"]

But the str and str1 values contain NULL value.

I am using trail version number +447786202820.I am
sending SMS message from my mobile to this number.
I am getting message in my inbox,but the database
field values are NULL.

Plz Help me sir..
Users browsing this topic