Tagged Questions
5
votes
5answers
14k views
How do I reload a page without a POSTDATA warning in Javascript?
I want to reload a page using:
window.location.reload(true);
But I receive the POSTDATA warning because the refresh function want to resend previous POST form data. How can I refresh my page ...
0
votes
1answer
43 views
Getting a 400 when using http client.request in nodejs
I'm trying to fetch some data from a server using nodejs. I would like to send a POST data. There are two things that I would like to know about.
How do I send the POST data?
Whatever request I make ...
0
votes
1answer
375 views
Button post HTML
I need to use a button without using a form. How do I make it send post data to the browser?
I am using:
<button style="height: 100px; width: 300px" onClick="parent.location='form1.php'" >Fill ...
0
votes
10answers
741 views
Writing Ajax code in JAVA
I want to write ajax code in java i.e. i want use the functionality of ajax without using ajax. I'm looking for some API of JAVA which can do so.
Like we post data of a web page through JAVA program ...