Geeks Talk

Prepare for your Next Interview




What is POST

This is a discussion on What is POST within the Java forums, part of the Software Development category; I want to have a brief knowledge about POST. Can someone share your thoughts on this in this discussion?...


Go Back   Geeks Talk > Software Development > Java

Register FAQ Members List Calendar Mark Forums Read
  #1 (permalink)  
Old 08-03-2006
Contributing Member
 
Join Date: Jul 2006
Posts: 51
Thanks: 0
Thanked 0 Times in 0 Posts
Robert is on a distinguished road
What is POST

I want to have a brief knowledge about POST. Can someone share your thoughts on this in this discussion?
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 11-12-2006
Contributing Member
 
Join Date: May 2006
Posts: 73
Thanks: 0
Thanked 4 Times in 4 Posts
joel is on a distinguished road
Re: What is POST

Hope that you want to know about POst Office Protocol.A POst Office Protocol is a protocol designed to allow single user computers to retrieve electronic mail from a POP server. The POP server might be a computer with a permanent Internet connection whereas its clients might only connect to it occasionally.
Reply With Quote
  #3 (permalink)  
Old 02-03-2007
Junior Member
 
Join Date: Feb 2007
Location: Bangalore
Posts: 6
Thanks: 0
Thanked 2 Times in 2 Posts
Thirumurugan321 is on a distinguished road
Re: What is POST

"POST" is one method to submitting form data to serverside program. A bulk amount of data we can post to the server by this method.
Example:
<html>
<form action="url" method=POST>
Enter the Name:
<input type="text" name="text1" size="10">
<input type="submit" value="Submit">
</form>
</html>

In the above program, "url" may be a servlet or jsp program, which is going to collect and process the data from the form. Using POST method a bulk amount of data we can post to the server.

And one more method is there instead of POST is called "GET". This method post the data to server in the form of query string. i.e We can see the see the data on the address bar. By this method we can send only a limited amount of data to server. 256 bytes only.
Reply With Quote
  #4 (permalink)  
Old 02-07-2007
Junior Member
 
Join Date: Feb 2007
Location: Mumbai
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
nikhilgarg is on a distinguished road
Re: What is POST

If i am understanding right POST stands from "Power on Self Test" . This is the process which taken place, when a computer boots up. This is the process to check all hardware and software availability
Reply With Quote

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Copyright © 2008 GeekInterview.com. All Rights Reserved