I want to pass some textbox value strictly using POST from one html page to another... how can this be done without using any server side language like asp.net or php
can it be done using javascript??
thnx
|
I want to pass some textbox value strictly using POST from one html page to another... how can this be done without using any server side language like asp.net or php can it be done using javascript?? thnx |
|||||||||||
|
|
You can't read POST data in any way on javascript so this is not doable. Here you can find similar questions: http://forums.devshed.com/javascript-development-115/read-post-data-in-javascript-1172.html http://www.sitepoint.com/forums/showthread.php?454963-Getting-GET-or-POST-variables-using-JavaScript This reading can also be interesting: http://en.wikipedia.org/wiki/POST_%28HTTP%29 This expecially suggests why this answer (wikipedia is the source):
POST data is added to the request. When you do a GET request the data is added to the url, and that's why you can access it through javascript (and that's why it's not parsed and you have to do it manually). Instead, POST send data directly into the http requests, which is not seen in any way by the html page (which is just a part of what is sent through the http request). That said, only server side language will receive the full HTTP request, and definitely you can' access it by javascript. I'm sorry but that is the real answer |
|||||||||||||||
|