html-form-post

Posting HTML Form Values Over HTTPS

I have a website that is currently using https for secure login and transactions. You can't navigate to the to the main site unless you login. I have had a request from a partner who have asked if they can seamlessly navigate to our site from their own web application, without logging in. There site is also using https. I've set up a...

Issue a redirect (HTTP 302) to act on _top frame without using Java script

I need to redirect the top frame on a form post and it should work irrespective of javascript and across all major browsers. I can redirect to a page with a link and its target attribute set & and asking the users to click the link. But would like to know whether I can do it in a 302 Response itself. ...

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

Prevent double submission of forms in jQuery

I have an form that takes a little while for the server to process. I need to ensure that the user waits and does not attempt to resubmit the form by clicking the button again. I tried using the following jQuery code: <script type="text/javascript"> $(document).ready(function(){ $("form#my_form").submit(function(){ $('input')....

What PHP/Shell Framwork can be used to access HTTP-POST/-GET Forms (besides curl)?

Hello, (Hallo!) I'm searching an abstraction layer from pure HTTP-POST/-GET using curl. It should somehow make it easy to define the Targeted script and it's variables. I read something exists in the FreeX (german unix/programming magazine), but don't have the named magazine at hand. What can I do? Stick with curl? What alternatives...

Should I use in this case post or get method for ajax form submission?

Hi, Should I use in this case method="post" or method="get" for ajax form submission? Update: When should be used post and when get in case of ajax form submission? <form action="script.php" method="post"> <label>Url: </label> <input value="http://" id="url-input" type="text" size="100" /><br /> <label>paste html file source: ...

How do i resume an upload on a HTML Form?

I asked a question and it appears no one knows the answer. So i'll ask one specific part. How can i resume a file uploaded from an html form? While uploading the user has a full network disconnect. Then when the user is back online the form resumes. Before saying it isnt possible this site appears to do it and without corruption. -edit...

HTML form default values override actual values at post time in Internet Explorer 9

I am just testing the brand new Internet Explorer 9 Beta with my website. I see a weird behaviour for some form values and I am not sure if it is my mistake or a bug in IE9. What do you think? I have one form which declares several hidden input fields like this <input type="hidden" name="NewStatus" /> <input type="hidden" name="lastSav...