|
-
February 16th, 2000, 01:21 PM
#1
Difference between GET and POST
Hi,
Can anyone explain the differences between the POST and GET method
in ASP?
Thanx in advance !
Regards,
Palani.
-
February 16th, 2000, 02:56 PM
#2
Re: Difference between GET and POST
The GET method will pass the form values in the querystring, the POST method hides them from the user. You have seen URLs like www.blah.com/some.asp?gobbledygook - those are usually something along those lines. except i dont think that the GET method encrypts the form values, so if your form has a username and password your action url would end up like http://www.blah.com/process.asp?User...Password=MyPWD - not the most secure thing, obviously. As far as I know, there isn't any reason why one shouldn't use the POST, it is not browser specific.
Hope this helps,
John
John Pirkey
MCSD
www.ShallowWaterSystems.com
John Pirkey
MCSD (VB6)
http://www.stlvbug.org
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|