Postdata is the data sent by an HTTP POST Request, which is one request type of the HTTP Specification. In contrast to the GET Request, it contains a message body which can contain any type of data, like Strings and Binary Data.
Questions tagged [postdata]
193 questions
0
votes
1 answer
Use form data to conduct custom query string in wordpress
I have a form on my wordpress site. On form submission I want to:
1) Capture the form data
2) Run database queries using these data
3) Process the results and use these to construct a query string
4) Redirect user to site root + query…

user1684046
- 1,739
- 2
- 13
- 15
0
votes
2 answers
Android - webview postURL doesn't send data
I'm trying to send data as post, with webview but it doesn't work,
follow my code below.....
WebView webview = new WebView(getApplicationContext());
setContentView(webview);
byte[] post =…

Dutch Ranger
- 1
- 1
- 2
0
votes
1 answer
PHP - POSTing XML data using cURL-less http web requests to a gateway
I am trying to find a cURL-less way to POST data via http web request to a 3rd party payment gateway. I have developed the following code which in actual fact communicates successfully with the receiving page but apparently the POST data is not…

prince
- 671
- 2
- 11
- 26
0
votes
1 answer
How to receive post data in node.js as sent?
Client sending POST request with msgpack data as postbody. I can receive the chunk data as string, msgpack module not able to accept the string input for unpack the data. how to receive the post data as msgpack (not as string)? so that…

Nadhas
- 5,421
- 2
- 28
- 42
0
votes
1 answer
Passing an array of integers from JavaScript to a controller action of List
I am using javascript code to postdata to a controller action coded in C#. I am getting a null value when attempting to pass an array of integers in javascript created as follows:
var answers =…

Jay
- 3,012
- 14
- 48
- 99
0
votes
0 answers
Fatal exception asynctask #2 when trying to Post Data to HTTP
Been trying to post data to HTTP server. Essentially I created a input text field and a button so when I type in data, button will allow me to post it. However, every time I enter a number and press the button, the program crashes. Below is the…
0
votes
1 answer
TextBox.Text doesn't change after edit when TextBox is inside Repeater
The following code used to work as expected until recently:

Robertas
- 1,164
- 3
- 11
- 26
0
votes
1 answer
jqGrid postData empty when use with ajaxGridOptions
Below is my jqGrid initialisation:
jQuery("#dataGrid").jqGrid({
jsonReader : {
root:"rows",
page: "page",
total: "total",
records: "records",
cell: "",
…

user3375530
- 1
- 4
0
votes
1 answer
How to send a 2D array in C# code to php page?
I am interested in sending some data from my C# code to a php page, I can already send a single variable and even two, but when it comes to a 2D array i'm already clueless.
My goal is to send the 4 2D arrays within the arguments to a php page via…

Fukkatsu
- 149
- 1
- 12
0
votes
6 answers
is it possible to tamper post data when using frames
I have a site that is using frames. Is it still possible from the browser for someone to craft post data for one of the frames using the address bar? 2 of the frames are static and the other frame has php pages that communicate using post. And it…

Matt Phillips
- 11,249
- 10
- 46
- 71
0
votes
2 answers
C# -> Php | Post Data
I've been trying to work with php post data for the past two days, and after being absolutely positive my code was logical, I gave up attempting to get it working myself.
Here's my C# code,
class SecureWeb
{
/*
* CONSTRUCTOR
*/
…

user1117742456
- 213
- 1
- 3
- 11
0
votes
0 answers
xCode Allocation trouble, i think so
I'm using this code to send Post login to a page:
NSString *kode = Password.text;
NSString *post = [NSString stringWithFormat:@"user=%@&pass=%@&login=login", bruger.text, kode];
NSData *postData= [post dataUsingEncoding:NSASCIIStringEncoding…

Steelzeh
- 284
- 2
- 13
0
votes
2 answers
wordpress file which receives and processes post data (voting)
I have the jquery / ajax function which should initiate jquery upvote plugin:
$('#topic').upvote();
var callback = function(data) {
$.ajax({
url: '/vote', //this url should point to the adequate file
type: 'post',
data: {…

weaponx
- 135
- 5
- 18
0
votes
1 answer
c# changing this line so it outputs the string as a variable
UPDATE TO POST ORIGIANAL POST AFTER THIS CODE --- this code is an update to what david has been helping me do its throwing one error need help
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using…

user2847609
- 41
- 1
- 1
- 5
0
votes
1 answer
Submit Form using by HttpWebRequest with Form Token
my problem is i have a basic form i want to submit.
First of all i can use use HttpWebRequest and Response classes. I Know them :)
But in this case situation is little bit different.
The form i want to submit is has some unique form Token.
So i need…

DLL_Whisperer
- 815
- 9
- 22