Questions tagged [html-post]

56 questions
0
votes
1 answer

Why passing JSON parameters from HTML to Node.js results in body parameter is undefined

I'm playing with Node.js for the first time trying to pass parameters from a form to my server and print them on the console my html
Kukula Mula
  • 1,788
  • 4
  • 19
  • 38
0
votes
0 answers

How to protect a post request payload to the server?

When I enter username, password and hit the login button, then a POST request goes to the server. Does the password go in plain text format in the header? And so is https the only solution to encrypt the communication so an attacker cannot view it?
variable
  • 8,262
  • 9
  • 95
  • 215
0
votes
1 answer

Unable to pass django template variable array through post back to view

I am trying to develop some basic django templates where i initially pass the django template variable which is an array - {{array_list}}. I am able to perform operations on this dtv easily. But I am unable to post this variable back to views. Eg. I…
A.Yadav
  • 43
  • 1
  • 6
0
votes
1 answer

How to send textBox value by POST

I'm using Html.BeginForm and trying to pass the supplied value of the textBox "archName" to the post, How can I do that? I mean what should I add instead of "someString"? <% using (Html.BeginForm("addArchive", "Explorer", new { name = "someString"…
Lisa
  • 3,121
  • 15
  • 53
  • 85
0
votes
0 answers

Http Responding 403 Forbidden just in Post Request in GET request is ok

I have public function reciveNotification() and it is alowded as following $this->Auth->allow([“reciveNotification”]); When I do GET Request it working good but by POST request I am facing to 403 Forbidden what am I doing wrong? GET: HTTP/1.1 200…
0
votes
2 answers

View won't pick up post

Can someone tell me why the following view won't pick up a POST request: # Loads all the latest phone numbers for the models.py file def client_phones_form_view(request, clientKEY): try: i_clientKEY = int(clientKEY) except…
Robert Johnstone
  • 5,431
  • 12
  • 58
  • 88
0
votes
1 answer

Cannot post the var to another php file successfully

I have a php file A.php contained a form called formA . The formA get the result and then post and store into the MYSQL through php & SQL & traditional HTML form posting method . In one of the field in formA ,I want to post this value $amountto…
moon
  • 9
  • 5
0
votes
4 answers

It is not able to auto-post with JS & AJAX

I have a formA that posts and saves to the MYSQL DB
" method="post"> <== first visable form ,Submitting the data into DB ........field inputs. ..... …
evabb
  • 405
  • 3
  • 21
0
votes
1 answer

It is not able to auto-post with ajax form submit function

In this webpage , I have a visible form with a submit button ,called form A.It has a post action. " method="post"> I want to do an invisible form that extract…
evabb
  • 405
  • 3
  • 21
0
votes
0 answers

Ajax begin form db record with mvc

I created a form. I want to do a post save method. He records but records the same data twice. How can I solve this problem? I have to solve the double registration problem. I'm pushing the button once. When I go through Debug step by step, it goes…
yuksel
  • 71
  • 1
  • 13
0
votes
1 answer

HTML post to Alfresco Webservice

I have been trying to post from a HTML dashlet to a Java based web-service but the content is always null. I have tried posting with postman setting various properties etc. I have been able to get a response as a result of the post but using the…
Ian
  • 412
  • 1
  • 4
  • 18
0
votes
4 answers

Sending data from a HTML page to a PHP script and picking the data in PHP

My HTML page Enter a transceiver ID:



My PHP script which is running…
SMG
  • 95
  • 1
  • 2
  • 11
0
votes
1 answer

Text Value of Radio Button Defaults to Zero

I have a radio button in a html table and form. When the value of the radio button is in text the button returns zero.However when the value is a number the button returns the rue value. The code is below.
faisal abdulai
  • 3,739
  • 8
  • 44
  • 66
0
votes
0 answers

How to get data for a menu screen from server

So when i post to a server i get back html code of the webpage i am posting to. In that code i can find the information, like the name and other info that is needed for the menu screen. Do i extract that information from the html to put on the menu…
0
votes
1 answer

Where is the response supposed to appear for this HTML post?

So im practicing with this code from here and i was wondering where the result returns to? For example, i purposely change the url to make it invalid, and i don't see a response with Did not work! anywhere. I looked at the console, logcat, and no…