Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
5k views

How can I get a FormPanel to POST JSON with ExtJS 3.1.0?

By default, a FormPanel in ExtJS 3.1.0 posts the form fields as application/x-www-form-urlencoded when you call its submit() function. Is there any way to get it to post JSON instead?
2
votes
1answer
243 views

How to disable buffering in Java HttpURLConnection for multi-part form post?

(This is for a signed applet and I have decided against HTTPClient to keep my jar very small) I am using HttpURLConnection to successfully upload a file from the user to a server using multi-part ...
2
votes
1answer
1k views

Ext-GWT Advanced Form

I'm attempting to use the advanced forms of Ext-GWT, but the provided example is only shows how to lay out the form, not submit or process data. Are there any end to end examples of how to use these? ...
1
vote
0answers
216 views

Spring security Custom Filter: cannot read FROM POST parameter

I am trying to read a form-post parameter with the following code: String hohumId = request.getParameter("HOHUM_ID"); if (hohumId == null) { throw new ...
1
vote
1answer
219 views

asp.net mvc 3 - form post - ERR_CONNECTION_RESET

I'm trying to make a form post page on asp.net mvc 3 application with 2500 input type "hidden" (because is like an preprocessed excel upload) with aprox 150 chars each input (aprox 400Kb of data) and ...
1
vote
2answers
248 views

Public Post Form for WordPress

Hi I'm looking for a very simple quick (no-plugins though) way to add a form inside a page template that will allow a logged-in user to post from outside WP-Admin. So basically the post will be under ...
1
vote
3answers
665 views

Jquery - Unable to dynamically change action of a form and submit it inside the success event of ajaxForm()

This is a payment form to be posted to Worldpay payment gateway. It has all the parameters as per the WorldPay documentation and it works fine if directly posted. But, now I am trying to AJAX ...
1
vote
3answers
1k views

Why does naming your HTML form submit button “submit” break things?

In ASP.NET webforms and ASP 3 (Classic ASP), I came across an issue whereby naming your form submit button "submit" would "break things". Below is the rendered HTML: <input type="submit" ...
1
vote
3answers
381 views

.Net Form POST

I've got a client that, during testing, is giving me conflicting information. I don't think they are lying but more confused. So, I would like to setup some simple auditing in my ASP.Net ...
0
votes
1answer
128 views

Why does an HTTP request in Node.js yield the data type as well?

req = http.request options, (res) -> res.on 'data', (chunk) -> data += chunk return res.on 'end', -> if res.statusCode is 200 console.log res ...
0
votes
3answers
356 views

how to get post values using <a href? [closed]

Hii... How to get post values using <a href... link ? please help, thanx in advance.
0
votes
2answers
182 views

send post with AS 3.0

I want to submit a form in flash and send the user to an other page in html/php and get the post information on that page. How can i do this?
0
votes
1answer
367 views

100% code-behind form post

I am looking for a way to wire up an ASP:LinkButton to appear as a link but in the background (100% in the code behind, no dummy pre-filled form in the markup) do a form post (target=_blank). I have ...
0
votes
2answers
6k views

jqGrid tableToGrid “options” parameter

Basics Hi all, I have see the tableToGrid method (by Peter Romianowski) defined as tableToGrid(selector, options) on the jqGrid wiki, but cannot find anywhere that has documentation of the options ...
0
votes
3answers
549 views

how do I return to the same exact page after posting a form?

I'm posting data to a page called process.aspx that handles some business logic with the following code: <%@ Page Language="C#" %> <% MyData.process(Request); Response.Redirect("") ...
0
votes
1answer
112 views

Why is my Asp.Net Form arriving empty when I post from Page to Page?

I have the following HTML Code <%@ Page Language="C#" %> <html> <head> <title></title> </head> <body> <form id="frmSystem" ...
0
votes
4answers
1k views

ASP.NET : Reading form variable values in the action page of search form

I have a website where i want to implement search functionality.So i added the below code to have a search box in my html page <form id="search" method="post" action="Results.aspx"> ...
0
votes
3answers
358 views

Classic ASP: posting with content of PDF file to a .NET page

So the problem is half the app is written in classic asp and half is in asp.net. There's a PDF file (in memory) that is generated by classic asp code that I need to share with the .NET half. I thought ...