form-post

.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 application. Specifically, right when any page is called, I want to immediately insert the Querystring and/or form POST data into a log table. Just ...

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 of saving the PDF to the FS or DB, which I am pretty sure most of you wouldn't recommend because it would need to go through a very slow p...

Why does naming your HTML form submit button "submit" break things?

Hey guys 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" name="Submit" value="Submit" id="Submit" /> I say "break things" because I'm not sure exactly why or what happened. But the symptoms usuall...

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? I'm attempting to make a form that has text and a file upload, but I have no idea how to do anything beyond what is provided out in the exa...

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"> <input id="txtSearchKey" type="text" name="txtSearchKey" /> <input id="Submit1" type="submit" value="submit" /><br /> <br /> </form> in Res...

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? ...

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" method="post" action="target.aspx"> <input id="txtTextField" type="text" /> <input id="btnPost" value="Submit" onclick="javascript:frmSystem.submit();" type="butt...

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("") %> this page I will be calling from a variety of pages. Is there some way of knowing from which page my form was submitted? I was thinking somethi...

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 Does anyone know about these or where to find them? EDIT: Thanks Oleg, resolved! More What Im actually trying to do is encase the resultin...

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 post the form first to my site (using jquery.form, and that part is working fine) then do some database operations and then change the action...