Categories:
.NET (357)
C (330)
C++ (184)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (2)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
Methods GET and POST in HTML forms - what's the difference?.
Methods GET and POST in HTML forms - what's the difference?.
✍: Guest
GET: Parameters are passed in the querystring. Maximum amount of data that can be sent via the GET method is limited to about 2kb.
POST: Parameters are passed in the request body. There is no limit to the amount of data that can be transferred using POST. However, there are limits on the maximum amount of data that can be transferred in one name/value pair.
2008-06-24, 5876👍, 0💬
Popular Posts:
What are database triggers? How are the triggers fired? Read this collection of questions and answer...
What are shared (VB.NET)/Static(C#) variables? Static/Shared classes are used when a class provides ...
Can you tell me how to check whether a linked list is circular? Create two pointers, and set both to...
What is cross page posting? By default, button controls in ASP.NET pages post back to the same page ...
What does a special set of tags <?= and ?> do in a PHP script page? <?= express...