Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
Do you want to POST the form with javascript or read the POST data? – madflow Jun 5 '12 at 12:01
@madflow I want to first post the data from page1.html to page2.html then read/assign it there. – Mayur Jun 5 '12 at 12:03
@Sirwani POST request can only be accessed server-side. Use "GET". – madflow Jun 5 '12 at 12:05
@Sirwani using GET, you can read the url plus querystring using document.location. You would need to parse the text to pull out your values. – CM Kanode Jun 5 '12 at 12:07
@madflow thnx... that means it is not possible..?? hmm... – Mayur Jun 5 '12 at 12:07
show 5 more comments

1 Answer

up vote 3 down vote accepted

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):

GET Requests a representation of the specified resource. Requests using GET should only retrieve data and should have no other effect. (This is also true of some other HTTP methods.)[1] The W3C has published guidance principles on this distinction, saying, "Web application design should be informed by the above principles, but also by the relevant limitations."[10] See safe methods below.

POST Submits data to be processed (e.g., from an HTML form) to the identified resource. The data is included in the body of the request. This may result in the creation of a new resource or the updates of existing resources or both.

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

share|improve this answer
1  
here's another one – ClydeFrog Jun 5 '12 at 12:21
If that exists, I think we can mark the question as a duplicate. – Fire-Dragon-DoL Jun 5 '12 at 12:25
1  
This is quite an ambiguous question. HTTP is a client-server technology, so in principle, you can't POST to any page that is not on a server. – Christian Jun 5 '12 at 12:26
@Christian thnx.. that helps – Mayur Jun 5 '12 at 12:27
@Christian: Well, the question isn't amiguous. If you don't know the HTTP protocol you simply don't know you can't read POST data for reasons you explained. – Fire-Dragon-DoL Jun 5 '12 at 12:28
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.