Top "Http-post" questions

POST is one of the HTTP protocol methods; it is used when the client needs to send data to the server, such as when uploading a file, or submitting a completed form.

asp.net MVC 4 multiple post via different forms

Right now I understand if (IsPost){ //do stuff } checks all post methods on that page. However, I have 2 different forms …

c# asp.net-mvc forms http-post
How to post to a request using node.js

I am trying to post some json to a URL. I saw various other questions about this on stackoverflow but …

javascript node.js http-post
How to upload multipart form data and image to server in android?

Status code 500 during upload multipart entity image to server in android code Html form: (can add successfully image to server) &…

android http-post multipartform-data
How can you add a Certificate to WebClient (C#)?

I know it is pretty simple to add a certificate to a HttpWebRequest. However, I have not found a way …

c# httpwebrequest certificate webclient http-post
How to simulate HTTP POST on localhost (*Windows* not Unix)?

What is the simplest way of sending an HTTP POST to a localhost address/port under Windows? E.g. do …

http browser http-post localhost browser-plugin
check POST request with Fiddler

How can I use Fiddler to check the response from a web server. I could easily check the GET method …

http-post fiddler
Issue reading HTTP request body from a JSON POST in PHP

I'm writing a script that is registered as an endpoint for a webhook. I know that it's successfully registered because …

php json post http-post
How to make a Python HTTP Request with POST data and Cookie?

I am trying to do a HTTP POST using cookies in Python. I have the values of URL, POST data …

python cookies http-post urllib2
Read associative array from json in $_POST

I am using jQuery to post a json object to my php application. jQuery.post("save.php",JSON.stringify(dataToSend), …

php json post http-post associative-array
How to prevent submitting the HTML form's input field value if it empty

I have HTML form with input fields. Some of inputs can be empty, i.e. the value is "". <input …

javascript html forms http-post