Page 1 of 1
send post variable
Posted: Fri Mar 28, 2014 10:56 am
by Ahmadno
i have this site
http://www.foxmoviestv.com/arabic/schedule/weekly/ when i open it the time zone is Saudi Arabia i want to change it to GMT time zone by post variable

Re: send post variable
Posted: Fri Mar 28, 2014 12:33 pm
by requinix
Okay. What have you done so far and what problems are you having with it?
Re: send post variable
Posted: Sat Mar 29, 2014 4:06 am
by Ahmadno
I want to open this site and send post variable to select the time zone to GMT not manually

Re: send post variable
Posted: Sat Mar 29, 2014 5:32 am
by requinix
Actually my earlier questions, though still unanswered, are secondary.
1. Is that your site?
2. What POST variable do you need to send?
3. What is your obsession with POST?
Re: send post variable
Posted: Sat Mar 29, 2014 7:06 am
by Ahmadno
1- No it is not my site .
2- I search about POST variable to make the choice of time zone change

Re: send post variable
Posted: Sat Mar 29, 2014 2:33 pm
by twinedev
I take it you are wanting this so you can somehow bookmark this page, but have it auto be in the timezone you want when you visit.
The easiest way would be to create a local web page on your machine that emulates the form that is being submitted on their site, and then an ONLOAD event that submit the form. Then when you follow the bookmark it will go to your local .html file, and then auto submit to their site.
However, in looking deeper, they are using ASP Forms, which if I remember right, every page call generates a new "form state" to let the server know the state of it's "application". If that is the case, the formstate values may not be valid after a certain period of time, so even if you do that, after a couple of days it may no longer work.
Re: send post variable
Posted: Sat Mar 29, 2014 2:51 pm
by Ahmadno
Thanks