CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 2011
    Posts
    18

    What's the difference between GET and POST AJAX requests?

    I've always done GET requests regardless, but I think I should probably look into it :P .

    The first question is if GET can be used for passwords. I know that it's generally considered best practice to use POST for password forms, but isn't this a bit different? Or am I wrong?

    Also, are GET requests more readily cached than regular HTTP requests? I know that POST requests are not cached whatsoever, but I've had no problems (thus far) with AJAX-GETs and caching.

  2. #2
    Join Date
    Aug 2011
    Posts
    8

    Re: What's the difference between GET and POST AJAX requests?

    In GET, the parameters are send in URL, whereas in POST there is nothing like that.
    I'd also doubt about it bt actually there is not much difference b/w these.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured